博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux 下 安装 配置 运行 RocketMQ Prerequisite
阅读量:2396 次
发布时间:2019-05-10

本文共 785 字,大约阅读时间需要 2 分钟。

Prerequisite

  1. 64bit OS, Linux/Unix/Mac is recommended;
  2. 64bit JDK 1.7+;
  3. Maven 3.2.x
  4. Git

Clone & Build

> git clone https://github.com/apache/incubator-rocketmq.git  > cd incubator-rocketmq  > mvn clean package install -Prelease-all assembly:assembly -U  > cd target/apache-rocketmq-all/

Start Name Server

> nohup sh bin/mqnamesrv &  > tail -f ~/logs/rocketmqlogs/namesrv.log  The Name Server boot success...

Start Broker

> nohup sh bin/mqbroker -n localhost:9876 &  > tail -f ~/logs/rocketmqlogs/broker.log   The broker[%s, 172.30.30.233:10911] boot success...

Shutdown Servers

> sh bin/mqshutdown brokerThe mqbroker(36695) is running...Send shutdown request to mqbroker(36695) OK> sh bin/mqshutdown namesrvThe mqnamesrv(36664) is running...Send shutdown request to mqnamesrv(36664) OK
链接 

转载地址:http://nbfob.baihongyu.com/

你可能感兴趣的文章
IDL vector filed plot
查看>>
piecewise constant function 阶跃常函数
查看>>
IDL save postscript file
查看>>
Bibtex如何使authors in the citation 最多显示两个
查看>>
Bibtex 如何cite 不同格式
查看>>
Cmake space in path windows
查看>>
Differences between Tesla and a GeForce Series GPU
查看>>
Faster Parallel Reductions on Kepler
查看>>
NVIDIA Tesla C2075 vs Tesla K10 theoretical performance
查看>>
Fast floor/ceiling functions C
查看>>
Continue Long Statements on Multiple Lines Matlab
查看>>
What does “warning: not all control paths return a value” mean? (C++)
查看>>
C++ 运算符优先级
查看>>
Savitzky-Golay smoothing
查看>>
IDL get variable size in bytes
查看>>
high-frequency emphasis filter matlab
查看>>
cat -n
查看>>
使用 ftrace 调试 Linux 内核,第 2 部分
查看>>
使用 ftrace 调试 Linux 内核,第 3 部分
查看>>
内存储器管理概述、内存分配与释放、地址映射机制(mm_struct, vm_area_struct)、malloc/free 的实现
查看>>