1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| nohup sh bin/mqnamesrv & tail -f ~/logs/rocketmqlogs/namesrv.log
nohup sh mqbroker -n localhost:9876 -c conf/broker.conf &
nohup sh bin/mqbroker -n localhost:9876 -c conf/broker.conf autoCreateTopicEnable=true &
tail -f ~/logs/rocketmqlogs/broker.log
export NAMESRV_ADDR=localhost:9876
#关闭rocketmq sh bin/mqshutdown broker sh bin/mqshutdown namesrv
|