- Mastering RabbitMQ
- Emrah Ayanoglu Yusuf Ayta? Dotan Nahum
- 290字
- 2021-07-23 14:52:48
Starting RabbitMQ
As we can see, the installation part of RabbitMQ is quite easy and starting RabbitMQ is similar to its installation. Some package managers in Linux, Mac OS X, and Windows installer add configuration parameters to operation system's configuration for automatic startup. In such a case, we don't need to run the RabbitMQ command manually; however, if we install RabbitMQ manually, we need to run the RabbitMQ commands manually.
Starting RabbitMQ on Windows
If we use the Windows installer of RabbitMQ, the installer already makes configurations for starting automatically. Therefore, we don't need to run RabbitMQ manually; however, whenever we'd like to control the status of the server, we just need to run following command on the sbin
folder of RabbitMQ:
rabbitmqctl status

Status of RabbitMQ in Windows
You may have installed RabbitMQ manually on your Windows and you might wonder how you can run the RabbitMQ server. You should run the following command to start RabbitMQ (you have to run this command with an administrative user). Moreover, you can install the RabbitMQ server as a Windows service:
rabbitmq-server
Other OSes (Linux, Mac OS X)
There's isn't much difference in running RabbitMQ on Windows and other operating systems. If we have RabbitMQ already installed using package managers, such as apt-get
, yum
, and so on, we don't need to run the RabbitMQ manually because RabbitMQ has already started automatically. So, we'd like to check the status of the RabbitMQ using the following command:
sudo rabbitmqctl status

Status of RabbitMQ in Unix
After controlling the RabbitMQ status, if we get a message that says that RabbitMQ isn't running, then we should run RabbitMQ using the following command on the sbin
folder of RabbitMQ installation folder:
rabbitmq-server

Starting of RabbitMQ in Unix
- 軟件項目估算
- 無代碼編程:用云表搭建企業數字化管理平臺
- 編寫高質量代碼:改善Python程序的91個建議
- PHP+MySQL+Dreamweaver動態網站開發實例教程
- KnockoutJS Starter
- 精通Linux(第2版)
- Symfony2 Essentials
- BIM概論及Revit精講
- Go語言精進之路:從新手到高手的編程思想、方法和技巧(2)
- Building Wireless Sensor Networks Using Arduino
- 用案例學Java Web整合開發
- Java EE企業級應用開發教程(Spring+Spring MVC+MyBatis)
- 寫給程序員的Python教程
- Modern C++ Programming Cookbook
- Vue.js光速入門及企業項目開發實戰