Steps to install RocketMQ instance on Linux

Steps to install RocketMQ instance on Linux

1. Install JDK

1.1 Check whether the current virtual machine environment has JDK rpm -qa|grep java

1.2 Uninstall rpm -e --nodeps xxxxxx (your own openjdk)

1.3 Install JDK

Create a new java folder in /usr/local and upload the tar package to the folder

Switch to /usr/local/java and decompress it using tar -zxvf xxx

Configure the /etc/profile file and add JDK environment variables

export JAVA_HOME=/usr/local/java/jdk1.8.0_121 Replace your own path

export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar

export PATH=$JAVA_HOME/bin:$PATH

Application file source /etc/profile

Use java -version to check the version

2. Install RocketMQ

2.1 Configure the /etc/hosts file and write the IP addresses of the two hosts

  • 192.168.42.22 rocketmq-nameserver1
  • 192.168.42.22 rocketmq-master1
  • 192.168.42.33 rocketmq-nameserver2
  • 192.168.42.33 rocketmq-master2

2.2 Restart the network card service network restart

2.3 Upload the rocketmq compressed package to /usr/local

2.4 Switch to /usr/local and decompress the rocketmq compressed package tar -zxvf xxxxxx

2.5 Change the name of the decompression folder

mv alibaba-rocketmq alibaba-rocketmq-3.2.6

2.6 Create a soft link

ln -s alibaba-rocketmq-3.2.6 rocketmq

2.7 mkdir /usr/local/rocketmq/store

mkdir /usr/local/rocketmq/store/commitlog

mkdir /usr/local/rocketmq/store/consumequeue

mkdir /usr/local/rocketmq/store/index

2.8 Upload borker-a.properties and borker-b.properties to /usr/local/recketmq/conf/2m-noslave

2.9 master01 configures borker-a.properties

brokerName=broker-a corresponds to the file name

namesrvAddr=rocketmq-nameserver1:9876;rocketmq-nameserver2:9876

master02 configures borker-b.properties

brokerName=broker-b corresponds to the file name

namesrvAddr=rocketmq-nameserver1:9876;rocketmq-nameserver2:9876

2.10 Changelog

mkdir -p /usr/local/rocketmq/logs

cd /usr/local/rocketmq/conf && sed -i 's#${user.home}#/usr/local/rocketmq#g' *.xml

2.11 Configure JVM parameters and modify them according to the actual size of your virtual machine

vi /usr/local/rocketmq/bin/runbroker.sh

JAVA_OPT="${JAVA_OPT} -server -Xms1g -Xmx1g -Xmn512m -XX:PermSize=128m -XX:MaxPermSize=320m"

vi /usr/local/rocketmq/bin/runserver.sh

JAVA_OPT="${JAVA_OPT} -server -Xms1g -Xmx1g -Xmn512m -XX:PermSize=128m -XX:MaxPermSize=320m"

2.12 Start NameServer

cd /usr/local/rocketmq/bin

Start: nohup sh mqnamesrv &

jps checks whether the JDK process has NamesrvStartup

2.13 Start BrokerServer

cd /usr/local/rocketmq/bin

master01 starts: nohup sh mqbroker -c /usr/local/rocketmq/conf/2m-noslave/broker-a.properties >/dev/null 2>&1 &

Master02 starts: nohup sh mqbroker -c /usr/local/rocketmq/conf/2m-noslave/broker-b.properties >/dev/null 2>&1 &

jps checks whether the JDK process has BrokerStartup

3. Monitor the RocketMQ status through the console

3.1 Upload the Tomcat compressed package to the virtual machine and decompress it /usr/local tar -zxvf xxxx decompression

3.2 Upload rocketmq-web-console.war to the webapps directory of Tomcat decompression directory

3.3 Start Tomcat

Switch to /usr/local/apache-tomcat-7.0.65/bin

./startup.sh starts ./shutdown.sh stops

3.4 Modify the unzipped rocketmq-web-console

/usr/local/apache-tomcat-7.0.65/webapps/rocketmq-web-console/WEB-INF/classes/config.properties configuration file

Configuration:

rocketmq.namesrv.addr=192.168.42.22:9876;192.168.42.33:9876

throwDone=true

3.5 Firewalls of both machines are turned off

systemctl stop firewalld.service

systemctl disable firewalld.service

After the configuration is completed, the web page accesses the console, and the effect is as follows

The above are all the relevant knowledge points introduced this time. You can follow them to learn. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Spring Boot elegant use of RocketMQ method example
  • Implementation of Java RocketMQ routing registration and deletion
  • Sample code for implementing delayed messages using Kotlin+RocketMQ
  • RocketMQ consumption load balancing--push consumption details
  • Detailed steps for building and deploying RocketMQ on Windows
  • Java RocketMQ Quick Start Basics
  • Detailed installation and use of RocketMQ in Docker
  • SpringBoot integrates RocketMQ and sample code for pitfalls
  • A brief talk about the experience of integrating Springboot with RocketMQ
  • RocketMQ retry mechanism and message power code example analysis

<<:  How to switch between Vue production and development environments and use filters

>>:  MySQL latest version 8.0.17 decompression version installation tutorial

Recommend

How to install Docker on Windows 10 Home Edition

I recently used Docker to upgrade a project. I ha...

Service management of source package installation under Linux

Table of contents 1. Startup management of source...

MySQL select results to perform update example tutorial

1. Single table query -> update UPDATE table_n...

MySQL 8.0.20 installation tutorial and detailed tutorial on installation issues

Original address: https://blog.csdn.net/m0_465798...

VUE+SpringBoot implements paging function

This article mainly introduces how to implement a...

Vue.js implements simple timer function

This article example shares the specific code of ...

Usage and principles of provide and inject in Vue3

Preface: When passing data between parent and chi...

Detailed explanation of JavaScript upload file limit parameter case

Project scenario: 1. Upload file restrictions Fun...

CentOS8 - bash: garbled characters and solutions

This situation usually occurs because the Chinese...

React implements the addition, deletion, modification and query of todolist

Table of contents Take todolist as an example The...

js to realize a simple advertising window

This article shares the specific code of js to im...

How to use Flex layout to achieve scrolling of fixed content area in the head

The fixed layout of the page header was previousl...

Full HTML of the upload form with image preview

The upload form with image preview function, the ...

A brief analysis of the differences between px, rem, em, vh, and vw in CSS

Absolute length px px is the pixel value, which i...

Examples of using the Li tag in HTML

I hope to align the title on the left and the dat...