Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TUBEMQ-178]change default IPs configuration after TUBEMQ-171 finished #111

Merged
merged 1 commit into from
Jun 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions conf/broker.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
[broker]
; unique id of broker server, required; when set to 0, TubeMQ will retrieve
; localhost IP, convert to int and set as brokerID
brokerId=0
brokerId=1
; hostname of broker server, required
hostName=10.2.121.42
hostName=127.0.0.1
; port that broker server listens to, optional; default is 8123
port=8123
webPort=8081
; address list of master HA servers
masterAddressList=10.2.121.42:8000,10.2.121.42:8000
masterAddressList=127.0.0.1:8000
; path to message files
primaryPath=var/stage/metadata_1
; maximum size of single data file; default is 512M
Expand Down
7 changes: 3 additions & 4 deletions conf/master.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@
;

[master]
; host address of master, required; must be configured at network card, enabled,
; non-loopback, and cannot be 127.0.0.1
hostName=10.2.121.42
; host address of master, required; must be configured at network card, enabled
hostName=127.0.0.1
; port that master listens to, optional; default is 8715
port=8000
; port that master web console listens to
Expand Down Expand Up @@ -61,7 +60,7 @@ bdbNodePort=9001
;home directory of node in replication group
bdbEnvHome=var/tubemqMasterGroup/master_data
;helperHost(and port) for node to join replication group the first time
bdbHelperHost=10.2.121.42:9001
bdbHelperHost=127.0.0.1:9001

; config of commit file synchronization in BDB-JE
; 1 for SYNC, will write and synchronously flush the log to disk upon transaction commit
Expand Down