Tutorial on installing rabbitmq using yum on centos8

Tutorial on installing rabbitmq using yum on centos8

Enter the /etc/yum.repos.d/ folder

Create rabbitmq-erlang.repo file

The content is as follows

[rabbitmq-erlang] 
name=rabbitmq-erlang
baseurl=https://dl.bintray.com/rabbitmq-erlang/rpm/erlang/21/el/7
gpgcheck=1
gpgkey=https://dl.bintray.com/rabbitmq/Keys/rabbitmq-release-signing-key.asc
repo_gpgcheck=0
enabled=1

Create rabbitmq.repo file

The content is as follows

[bintray-rabbitmq-server]
name=bintray-rabbitmq-rpm
baseurl=https://dl.bintray.com/rabbitmq/rpm/rabbitmq-server/v3.8.x/el/8/
gpgcheck=0
repo_gpgcheck=0
enabled=1

Installation Commands

yum install rabbitmq-server

RabbitMQ related commands

Open

service rabbitmq-server start

closure

service rabbitmq-server stop

View Status

service rabbitmq-server status

Restart

service rabbitmq-server restart

Enable plugin page management

rabbitmq-plugins enable rabbitmq_management

Create User

rabbitmqctl add_user admin mypassword

Grant permissions

rabbitmqctl set_user_tags admin administrator
rabbitmqctl set_permissions -p / admin ".*" ".*" ".*"

Open the management interface by visiting http://machine IP:15672 in the browser and log in using the admin account configured in the previous step.

Summarize

The above is the tutorial on how to install rabbitmq on centos8 using yum. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • How to install rabbitmq-server using yum on centos
  • Centos7.3 RabbitMQ distributed cluster construction example
  • Tutorial on building a high-availability cluster environment for RabbitMq under CentOS
  • How to automatically start RabbitMq software when centos starts

<<:  Detailed explanation of MySQL custom functions and stored procedures

>>:  How does Vue download non-same-origin files based on URL

Recommend

How to query duplicate data in mysql table

INSERT INTO hk_test(username, passwd) VALUES (...

Batch replace part of the data of a field in Mysql (recommended)

Batch replace part of the data of a field in MYSQ...

Writing High-Quality Code Web Front-End Development Practice Book Excerpts

(P4) Web standards are composed of a series of sta...

Linux series of commonly used operation and maintenance commands (summary)

Table of contents 1. System monitoring 2. File Op...

Nginx configuration location matching rules example explanation

The scope of nginx configuration instructions can...

Detailed tutorial on uploading and configuring jdk and tomcat on linux

Preparation 1. Start the virtual machine 2. git t...

Detailed tutorial of pycharm and ssh remote access server docker

Background: Some experiments need to be completed...

Example code for implementing 3D text hover effect using CSS3

This article introduces the sample code of CSS3 t...

How to start and restart nginx in Linux

Nginx (engine x) is a high-performance HTTP and r...

How to inherit CSS line-height

How is Line-height inherited?Write a specific val...

Summary of methods to prevent users from submitting forms repeatedly

Duplicate form submission is the most common and ...

Solution to find all child rows for a given parent row in MySQL

Preface Note: The test database version is MySQL ...