0安装步骤
0.1 安装erlang环境
安装依赖文件:
yum install gcc glibc-devel make ncurses-devel openssl-devel xmlto
1.1.1 Erlang安装配置
下载安装包,地址http://www.erlang.org/downloads,我选择的是otp_src_18.3.tar.gz。
然后解压文件:
[root@191Server rabbitmq]# tar -xzvf otp_src_18.3.tar.gz
[root@191Serve rabbitmq]# cd otp_src_18.3/
[root@191Serve otp_src_18.3]# ./configure --prefix=/opt/erlang
执行编译结果:
[root@191Serve otp_src_18.3]# make && make install
完成后进入/mnt/erlang查看执行结果
[root@191Serve rabbitmq]# cd /mnt/erlang/
[root@191Servererlang]# erl
Erlang/OTP 18 [erts-7.3] [source] [64-bit] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false]
Eshell V7.3 (abort with ^G)
1>
当出现以上信息时表示安装完成。然后输入’halt().’退出即可。
然后在配置Erlang环境变量,vi /etc/profile文件,增加下面的环境变量:
#set erlang environment
export PATH=$PATH:/opt/erlang/bin
source /etc/profile使得文件生效
0.2 下载安装RabbitMq
[root@191Server rabbitmq]# wget http://www.rabbitmq.com/releases/rabbitmq-server/v3.6.1/rabbitmq-server-generic-unix-3.6.1.tar.xz
解压文件
[root@191Server rabbitmq]# xz -d rabbitmq-server-generic-unix-3.6.1.tar.xz
[root@191Server rabbitmq]# tar -xvf rabbitmq-server-generic-unix-3.6.1.tar -C /opt
解压后进入文件夹/mnt发现多了个文件夹rabbitmq-server-generic-unix-3.6.1 ,重命名为rabbitmq以便记忆。
然后在配置rabbitmq环境变量,vi /etc/profile文件,增加下面的环境变量:
#set rabbitmq environment
export PATH=$PATH:/mnt/rabbitmq/sbin
source /etc/profile使得文件生效
0.3 RabbitMQ启动关闭
启动:
[root@191Server rabbitmq]# cd sbin/
[root@191Server sbin]# ./rabbitmq-server -detached
查看状态:
[root@191Server sbin]# ./rabbitmqctl status
Status of node rabbit@191Server...
[{pid,11849},
{running_applications,
[{rabbitmq_management,"RabbitMQ Management Console","3.6.1"},
{rabbitmq_management_agent,"RabbitMQ Management Agent","3.6.1"},
{rabbitmq_web_dispatch,"RabbitMQ Web Dispatcher","3.6.1"},
{webmachine,"webmachine","1.10.3"},
{amqp_client,"RabbitMQ AMQP Client","3.6.1"},
{mochiweb,"MochiMedia Web Server","2.13.0"},
{syntax_tools,"Syntax tools","1.7"},
{ssl,"Erlang/OTP SSL application","7.3"},
{public_key,"Public key infrastructure","1.1.1"},
{asn1,"The Erlang ASN1 compiler version 4.0.2","4.0.2"},
{crypto,"CRYPTO","3.6.3"},
{compiler,"ERTS CXC 138 10","6.0.3"},
{inets,"INETS CXC 138 49","6.2"},
{rabbit,"RabbitMQ","3.6.1"},
{mnesia,"MNESIA CXC 138 12","4.13.3"},
{rabbit_common,[],"3.6.1"},
{xmerl,"XML parser","1.3.10"},
{os_mon,"CPO CXC 138 46","2.4"},
{ranch,"Socket acceptor pool for TCP protocols.","1.2.1"},
{sasl,"SASL CXC 138 11","2.7"},
{stdlib,"ERTS CXC 138 10","2.8"},
{kernel,"ERTS CXC 138 10","4.2"}]},
{os,{unix,linux}},
{erlang_version,
"Erlang/OTP 18 [erts-7.3] [source] [64-bit] [smp:8:8] [async-threads:64] [hipe] [kernel-poll:true]\n"},
{memory,
[{total,64111264},
{connection_readers,0},
{connection_writers,0},
{connection_channels,0},
{connection_other,2808},
{queue_procs,2808},
{queue_slave_procs,0},
{plugins,367288},
{other_proc,19041296},
{mnesia,61720},
{mgmt_db,158696},
{msg_index,47120},
{other_ets,1372440},
{binary,128216},
{code,27368230},
{atom,992409},
{other_system,14568233}]},
{alarms,[]},
{listeners,[{clustering,25672,"::"},{amqp,5672,"::"}]},
{vm_memory_high_watermark,0.4},
{vm_memory_limit,6556241100},
{disk_free_limit,50000000},
{disk_free,37431123968},
{file_descriptors,
[{total_limit,65435},
{total_used,2},
{sockets_limit,58889},
{sockets_used,0}]},
{processes,[{limit,1048576},{used,204}]},
{run_queue,0},
{uptime,412681},
{kernel,{net_ticktime,60}}]
关闭:
[root@191Server sbin]# ./rabbitmqctl stop
Stopping and halting node rabbit@191Server...
0.4 配置网页插件
首先创建目录,否则可能报错:
mkdir /etc/rabbitmq
然后启用插件:
rabbitmq-plugins enable rabbitmq_management
配置linux 端口 15672 网页管理 5672 AMQP端口
然后访问http://localhost:15672即可
默认用户guest 密码guest
默认网页是不允许访问的,需要增加一个用户修改一下权限,代码如下:
添加用户:rabbitmqctl add_user hxb hxb
添加权限:rabbitmqctl set_permissions -p "/" hxb ".*" ".*" ".*"
修改用户角色rabbitmqctl set_user_tags hxb administrator
然后就可以远程访问了,然后可直接配置用户权限等信息。
0.5 Rabbitmq做主备
安装两台机器的rabbitmq以后,在找一台新的机器安装haproxy;
1.yum -y install haproxy
2.创建haproxy的配置文件
3.vi /etc/haproxy/ha_rabbit.conf
复制以下内容到配置文件中:
global
log 127.0.0.1 local0 #[日志输出配置,所有日志都记录在本机,通过local0输出]
log 127.0.0.1 local1 notice #定义haproxy 日志级别[error warringinfo debug]
daemon #以后台形式运行harpoxy
nbproc 1 #设置进程数量
maxconn 4096 #默认最大连接数,需考虑ulimit-n限制
#user haproxy #运行haproxy的用户
#group haproxy #运行haproxy的用户所在的组
#pidfile /var/run/haproxy.pid #haproxy 进程PID文件
#ulimit-n 819200 #ulimit 的数量限制
#chroot /usr/share/haproxy #chroot运行路径
#debug #haproxy 调试级别,建议只在开启单进程的时候调试
#quiet
########默认配置############
defaults
log global
mode tcp #默认的模式mode { tcp|http|health },tcp是4层,http是7层,health只会返回OK
option tcplog #httplog #日志类别,采用httplog
option dontlognull #不记录健康检查日志信息
retries 3 #两次连接失败就认为是不可用,也可以通过后面设置
#option forwardfor #如果后端需要获得客户端真实ip需要配置的参数,可以从Http Header中获得客户端ip
option httpclose #每次请求完毕后主动关闭http通道,haproxy不支持keep-alive,只能模拟这种模式的实现
#option redispatch #当serverId对应的挂掉后,强制定向到其他机器,以后将不支持
option abortonclose #当负载很高的时候,自动结束掉当前队列处理比较久的链接
maxconn 4096 #默认的最大连接数
timeout connect 5000ms #连接超时
timeout client 30000ms #客户端超时
timeout server 30000ms #超时
#timeout check 2000 #心跳检测超时
#timeout http-keep-alive10s #默认持久连接超时时间
#timeout http-request 10s #默认http请求超时时间
#timeout queue 1m #默认队列超时时间
balance roundrobin #设置默认负载均衡方式,轮询方式
#balance source #设置默认负载均衡方式,类似于nginx的ip_hash
#balnace leastconn #设置默认负载均衡方式,最小连接数
########统计页面配置########
listen stats
bind 0.0.0.0:1080 #设置Frontend和Backend的组合体,监控组的名称,按需要自定义名称
mode http #http的7层模式
option httplog #采用http日志格式
#log 127.0.0.1 local0 err #错误日志记录
maxconn 10 #默认的最大连接数
stats refresh 30s #统计页面自动刷新时间
stats uri /stats #统计页面url
stats realm XingCloud\ Haproxy #统计页面密码框上提示文本
stats auth admin:admin #设置监控页面的用户和密码:admin,可以设置多个用户名
stats auth Frank:Frank #设置监控页面的用户和密码:Frank
stats hide-version #隐藏统计页面上HAProxy的版本信息
stats admin if TRUE #设置手工启动/禁用,后端(haproxy-1.4.9以后版本)
########设置haproxy 错误页面#####
#errorfile 403 /home/haproxy/haproxy/errorfiles/403.http
#errorfile 500 /home/haproxy/haproxy/errorfiles/500.http
#errorfile 502 /home/haproxy/haproxy/errorfiles/502.http
#errorfile 503 /home/haproxy/haproxy/errorfiles/503.http
#errorfile 504 /home/haproxy/haproxy/errorfiles/504.http
frontend SOA_Rabbitmq_frontend
bind 0.0.0.0:5672
mode tcp
option clitcpka
timeout client 100m
maxconn 10000
default_backend SOA_Rabbitmq_Backend
backend SOA_Rabbitmq_Backend
mode tcp
timeout queue 100m
timeout server 300m
option srvtcpka
option redispatch
fullconn 10000
balance roundrobin
option tcp-check
server 240_rabbitmq_disk 192.168.1.182:5672 weight 3 maxconn 10000 check port 5672 inter 1000 rise 1 fall 2 backup
server 25_rabbitmq_ram 192.168.1.191:5672 weight 3 maxconn 10000 check port 5672 inter 1000 rise 1 fall 2
########frontend前端配置##############
#frontend main
# bind *:80 #这里建议使用bind *:80的方式,要不然做集群高可用的时候有问题,vip切换到其他机器就不能访问了。
# acl web hdr(host) -i www.abc.com #acl后面是规则名称,-i为忽略大小写,后面跟的是要访问的域名,如果访问www.abc.com这个域名,就触发web规则,。
# acl img hdr(host) -i img.abc.com #如果访问img.abc.com这个域名,就触发img规则。
# use_backend webserver if web #如果上面定义的web规则被触发,即访问www.abc.com,就将请求分发到webserver这个作用域。
# use_backend imgserver if img #如果上面定义的img规则被触发,即访问img.abc.com,就将请求分发到imgserver这个作用域。
# default_backend dynamic #不满足则响应backend的默认页面
########backend后端配置##############
#backend webserver #webserver作用域
# mode http
# balance roundrobin #balance roundrobin 负载轮询,balance source 保存session值,支持static-rr,leastconn,first,uri等参数
# option httpchk /index.html HTTP/1.0 #健康检查, 检测文件,如果分发到后台index.html访问不到就不再分发给它
# server web1 10.16.0.9:8085 cookie 1 weight 5 check inter 2000 rise 2 fall 3
# server web2 10.16.0.10:8085 cookie 2 weight 3 check inter 2000 rise 2 fall 3
# #cookie 1表示serverid为1,check inter 1500 是检测心跳频率
# #rise 2是2次正确认为可用,fall 3是3次失败认为不可用,weight代表权重
#backend imgserver
# mode http
# option httpchk /index.php
# balance roundrobin
# server img01 192.168.137.101:80 check inter 2000 fall 3
# server img02 192.168.137.102:80 check inter 2000 fall 3
#backend dynamic
# balance roundrobin
# server test1 192.168.1.23:80 check maxconn 2000
# server test2 192.168.1.24:80 check maxconn 2000
#listen tcptest
# bind 0.0.0.0:5222
# mode tcp
# option tcplog #采用tcp日志格式
# balance source
# #log 127.0.0.1 local0 debug
# server s1 192.168.100.204:7222 weight 1
# server s2 192.168.100.208:7222 weight 1
4.启动haproxy 并且指定配置文件
need-to-insert-img
http://192.168.1.193:1080/stats
查看这个页面是否有效;检查haproxy是否启动成功
5. 使用的时候记得配置文件的rabbitmq的host地址改为安装haproxy的ip,其他不变。
6. 测试关闭一台rabbitmq,看能否自动切换到另一台;
7. 注意:必须去rabbitmq控制台,创建虚拟节点以及配置用户权限,否则可能会出现没有权限的错误。
主从配置借鉴:http://blog.csdn.net/lsb2002/article/details/53931292