• Apache RocketMQ


    Apache RocketMQ is a distributed messaging and streaming platform with low latency, high performance and reliability, trillion-level capacity and flexible scalability.


    Run RocketMQ locally

    RocketMQ runs on all major operating systems and requires only a Java JDK version 8 or higher to be installed. To check, run java -version:

    $ java -version
    java version "1.8.0_121"

    For Windows users, click here to download the 4.9.3 RocketMQ binary release, unpack it to your local disk, such as D:\rocketmq. For macOS and Linux users, execute following commands:

    # Download release from the Apache mirror
    $ wget https://archive.apache.org/dist/rocketmq/4.9.3/rocketmq-all-4.9.3-bin-release.zip
    
    # Unpack the release
    $ unzip rocketmq-all-4.9.3-bin-release.zip

    Prepare a terminal and change to the extracted bin directory:

    $ cd rocketmq-4.9.3/bin

    1) Start NameServer

    NameServer will be listening at 0.0.0.0:9876, make sure that the port is not used by others on the local machine, and then do as follows.

    For macOS and Linux users:

    ### start Name Server
    $ nohup sh mqnamesrv &
    
    ### check whether Name Server is successfully started
    $ tail -f ~/logs/rocketmqlogs/namesrv.log
    The Name Server boot success...

    For Windows users, you need set environment variables first:

    • From the desktop, right click the Computer icon.
    • Choose Properties from the context menu.
    • Click the Advanced system settings link.
    • Click Environment Variables.
    • Add Environment ROCKETMQ_HOME="D:\rocketmq".

    Then change directory to rocketmq, type and run:

    $ mqnamesrv.cmd
    The Name Server boot success...

    2) Start Broker

    For macOS and Linux users:

    ### start Broker
    $ nohup sh bin/mqbroker -n localhost:9876 &
    
    ### check whether Broker is successfully started, eg: Broker's IP is 192.168.1.2, Broker's name is broker-a
    $ tail -f ~/logs/rocketmqlogs/broker.log
    The broker[broker-a, 192.169.1.2:10911] boot success...

    For Windows users:

    $ mqbroker.cmd -n localhost:9876
    The broker[broker-a, 192.169.1.2:10911] boot success...


    Run RocketMQ in Docker

    You can run RocketMQ on your own machine within Docker containers, host network will be used to expose listening port in the container.

    1) Start NameServer

    $ docker run -it --net=host apache/rocketmq ./mqnamesrv

    2) Start Broker

    $ docker run -it --net=host --mount source=/tmp/store,target=/home/rocketmq/store apache/rocketmq ./mqbroker -n localhost:9876

    Run RocketMQ in Kubernetes

    You can also run a RocketMQ cluster within a Kubernetes cluster using RocketMQ Operator. Before your operations, make sure that kubectl and related kubeconfig file installed on your machine.

    1) Install CRDs

    ### install CRDs
    $ git clone https://github.com/apache/rocketmq-operator
    $ cd rocketmq-operator && make deploy
    
    ### check whether CRDs is successfully installed
    $ kubectl get crd | grep rocketmq.apache.org
    brokers.rocketmq.apache.org                 2022-05-12T09:23:18Z
    consoles.rocketmq.apache.org                2022-05-12T09:23:19Z
    nameservices.rocketmq.apache.org            2022-05-12T09:23:18Z
    topictransfers.rocketmq.apache.org          2022-05-12T09:23:19Z
    
    ### check whether operator is running
    $ kubectl get pods | grep rocketmq-operator
    rocketmq-operator-6f65c77c49-8hwmj   1/1     Running   0          93s

    2) Create Cluster Instance

    ### create RocketMQ cluster resource
    $ cd example && kubectl create -f rocketmq_v1alpha1_rocketmq_cluster.yaml
    
    ### check whether cluster resources is running
    $ kubectl get sts
    NAME                 READY   AGE
    broker-0-master      1/1     107m
    broker-0-replica-1   1/1     107m
    name-service         1/1     107m

    1. 启动相关
    2. [root@yuanlnet bin]# netstat -nltp
    3. [root@yuanlnet rocketmq-4.9.3]# cd /opt/rocketMQ/
    4. [root@yuanlnet rocketMQ]# nohup java -jar rocketmq-dashboard.jar &
    5. [root@yuanlnet rocketMQ]# cd /opt/rocketMQ/rocketmq-4.9.3/bin/
    6. [root@yuanlnet bin]# nohup sh mqnamesrv &
    7. [root@yuanlnet bin]# cd ../
    8. [root@yuanlnet rocketmq-4.9.3]# nohup sh bin/mqbroker -n 10.*.*.*:9876 -c conf/broker.conf &
    9. [root@yuanlnet rocketmq-4.9.3]# netstat -nltp
    10. 关闭相关
    11. [root@yuanlnet rocketmq-4.9.3]# cd /opt/rocketMQ/rocketmq-4.9.3/bin/
    12. [root@yuanlnet bin]# sh ./mqshutdown broker
    13. [root@yuanlnet bin]# sh ./mqshutdown namesrv
    14. [root@yuanlnet rocketmq-4.9.3]# netstat -nltp
    15. 清理相关
    16. [root@yuanlnet bin]# rm -rf /root/logs/rocketmqlogs/*
    17. [root@yuanlnet bin]# rm -rf /root/store/*
  • 相关阅读:
    华为OD机试真题-堆内存申请-2023年OD统一考试(C卷D卷)
    大学生个人网页模板 简单网页制作作业成品 极简风格个人介绍HTML网页设计(舞蹈培训网页)
    DevOps|乱谈开源社区、开源项目与企业内部开源
    Liunx Jenkins 部署vue项目
    腾讯云 BI 数据分析与可视化的快速入门指南
    Netty 5新Buffer API详解
    C++运算符重载
    初识Java
    Linux共享内存
    蓝桥杯算法题汇总
  • 原文地址:https://blog.csdn.net/yuanlnet/article/details/126343313