1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
curl -O http://tar.matosiki.site/zip/rocketmq-all-4.3.0-bin-release.zip
unzip rocketmq-all-4.3.0-bin-release.zip
mv rocketmq-all-4.3.0-bin-release rocketmq-all-4.3.0
vi /etc/profile
export NAMESRV_ADDR=0.0.0.0:9876
source /etc/profile
cd /opt/rocketmq-all-4.3.0/bin/
nohup sh mqnamesrv &
nohup sh mqbroker -n localhost:9876 &
|