说明
本文基于Centos7系统测试
RabbitMQ版本为3.2.*
本文所有操作均使用root用户
官方软件下载地址
erlang: https://github.com/rabbitmq/erlang-rpm/releases
rabbitmq: https://www.rabbitmq.com/install-rpm.html#downloads
安装
1. 将本站点上的erlang和rabbitmq安装包传输至服务器
2. 安装erlang
# rpm -ivh erlang-21.3.8.14-1.el7.x86_64.rpm
3. 安装依赖包
# yum install socat openssl -y
4. 安装rabbitmq
# rpm -ivh rabbitmq-server-3.8.2-1.el7.noarch.rpm
5. 调整参数
# echo 'fs.file-max = 2000000' >> /etc/sysctl.conf
# sysctl -p
6. 设置主机名
# echo mq.dream.org >> /etc/hostname
# hostname mq.dream.org
7. 设置本地域名(以本机ip为192.168.1.10为例)
# echo '192.168.1.10 mq.dream.org mq' >> /etc/hosts
8. 退出并重新登录服务器
9. 启动
# systemctl start rabbitmq-server
10. 为mq添加账号, 虚拟主机并授权(程序使用)
# rabbitmqctl add_user dream dream_pass
# rabbitmqctl add_vhost dream_vhost
# rabbitmqctl set_permissions -p dream_vhost dream '.*' '.*' '.*'
账号
程序使用的虚拟主机名: dream_vhost
程序使用的账号: dream/dream_pass
标签:rpm,rabbitmq,vhost,文档,RabbitMQ,mq,erlang,dream From: https://blog.csdn.net/KaQiu_kangjia/article/details/143772223