阿里巴巴的rocketmq
github地址:https://github.com/alibaba/RocketMQ
启动过程
git clone https://github.com/alibaba/RocketMQ.git
cd RocketMQ
sh install.sh
cd devenv
安装完成后,因为install.sh脚本中创建devenv 符号链接写错了目录,需要在RocketMQ目录下执行如下命令:
rm -rf devenv
ln -s target/alibaba-rocketmq-3.0.7/alibaba-rocketmq devenv
启动RocketMQ
cd devenv/bin
nohup sh mqnamesrv &
nohup sh mqbroker -n "192.168.230.128:9876" &
more nohup.out
如果显示:
The Name Server boot success.
The broker[vdata.kt, 192.168.230.128:10911] boot success.
来源:https://www.cnblogs.com/hm-zhang/p/5955260.html