Solve the problem of not being able to access the RabbitMQ management page in the Linux server

Solve the problem of not being able to access the RabbitMQ management page in the Linux server

Because a certain function of my project requires the server to send messages to rabbitmq, I installed rabbitmq in the linux server today. First, install the erlang environment with yum, then install the rabbitmq service through rpm, and then configure the environment.

systemctl start rabbitmq-server

Start rabbitmq, access ip:15672, and find that the server denies access.

At first I suspected it was a firewall issue, so I checked the Linux firewall and Alibaba Cloud firewall and found that port 15672 was open. So I started to troubleshoot the problem. I used wget http://localhost:15762 on the server and found that it was not accessible, so it was not a firewall problem. So I used the command to find the rabbitmq process.

ps -ef | grep rabbitmq

I found that there was content output, which proved that rabbitmq was started successfully. Then I checked the port number of rabbitmq and found that there was only port number 4369, but not 15672. So I tried to modify the configuration file and other operations to modify the port number, but found that there was no effect. After searching Baidu, I found that I did not install the web plug-in, so I installed the web plug-in through the command

rabbitmq-plugins enable rabbitmq_management

After the installation is successful, I access the management page and find that it still doesn't work. Finally, I found that the default startup location of the plug-in is under etc/rabbitmq, not under the installation location of my rabbitmq. Through the cd command, enter usr/lib/rabbitmq/bin

Install the plug-in and restart the rabbitmq service to solve the problem

cd /usr/lib/rabbitmq/bin
rabbitmq-plugins enable rabbitmq_management
rabbitmqctl stop
rabbitmq-server detached

This is the end of this article about how to solve the problem of not being able to access the RabbitMQ management page in the Linux server. For more related content about Linux RabbitMQ not being able to access, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Linux RabbitMQ cluster construction process diagram
  • Detailed tutorial on installing RabbitMQ on Linux

<<:  Use Html+Css to implement a simple navigation bar function (the navigation bar switches the background color when the mouse is encountered)

>>:  Detailed explanation of JSON.parse and JSON.stringify usage

Recommend

CentOS7 uses yum to install mysql 8.0.12

This article shares the detailed steps of install...

How to use positioning to center elements (web page layout tips)

How to center an element in the browser window He...

MySQL cross-table query and cross-table update

Friends who have some basic knowledge of SQL must...

CSS and HTML and front-end technology layer diagram

Front-end technology layer (The picture is a bit e...

Websocket+Vuex implements a real-time chat software

Table of contents Preface 1. The effect is as sho...

Two usages of iFrame tags in HTML

I have been working on a project recently - Budou...

Grid systems in web design

Formation of the grid system In 1692, the newly c...

Solve the problem of docker's tls (ssl) certificate expiration

Problem phenomenon: [root@localhost ~]# docker im...

How to use MySQL 5.7 temporary tablespace to avoid pitfalls

Introduction MySQL 5.7 aims to be the most secure...

JavaScript to achieve floor effect

This article shares the specific code of JavaScri...

js simple and crude publish and subscribe sample code

What is Publish/Subscribe? Let me give you an exa...

Implementation of a simple login page for WeChat applet (with source code)

Table of contents 1. Picture above 2. User does n...

How to build a Vue3 desktop application

In this article, we will look at how to develop a...

Using CSS3 to implement font color gradient

When using Animation.css, I found that the font o...