mycat高可用集群搭建文档

最近主要在做mycat分库分表这一块的东西,踩过的坑很多,以后会慢慢分享下

一、配置MyCat状态检查服务(在MyCat节点主机上配置)


安装xinetd插件

yum install xinetd -y

cd /etc/xinetd.d

touch mycat_status

vim /etc/xinetd.d/mycat_status

service mycat_status
{
    flags = REUSE
    socket_type = stream
    port = 48700
    wait = no
    user = nobody
    server =/opt/export/app/mycat_status
    log_on_failure += USERID
    disable = no
}
创建xinetd启动服务脚本

vim /opt/export/app/mycat_status

#!/bin/bash
#/usr/local/bin/mycat_status.sh
# This script checks if a mycat server is healthy running on localhost. It will
# return:
#
# "HTTP/1.x 200 OK\r" (if mycat is running smoothly)
#
# "HTTP/1.x 503 Internal Server Error\r" (else)
mycat=`/opt/export/app/mycat/bin/mycat status |grep 'not running'| wc -l`
if [ "$mycat" = "0" ];
then
/bin/echo -e "HTTP/1.1 200 OK\r\n"
else
/bin/echo -e "HTTP/1.1 503 Service Unavailable\r\n"
fi
修改脚本文件权限(注意)

我就是在这里被坑了很久,根据权威指南上面mycat_status这个脚本里面的内容也有很多问题,好几个地方没有空格.

chmod u+x /etc/xinetd.d/mycat_status
chmod u+x /opt/export/app/mycat_status

将启动脚本加入服务

vim /etc/services

在末尾加入
mycat_status    48700/tcp               # mycat_status
重启xinetd服务

service xinetd restart

将xinetd加入自启动服务
chkconfig --add xinetd
chkconfig --level 2345 xinetd on
注意:

如果权限不足,需要使用sudo权限来启动

二、 HaProxy安装和配置(mycat节点之外)


haproxy安装

添加用户

useradd haproxy

sudo passwd haproxy

然后添加密码

创建目录

mkdir /opt/export/app/haproxy

haproxy-1.5.16.tar.gz放置该目录下

然后下面执行一下下面的命令

tar zxvf /opt/export/app/haproxy/haproxy-1.5.16.tar.gz

mkdir /opt/export/app/haproxy/haproxy

cd /opt/export/app/haproxy/haproxy-1.5.16

-- 编译安装
make TARGET=linux26 PREFIX=/opt/export/app/haproxy/haproxy ARCH=x86_64

make install PREFIX=/opt/export/app/haproxy/haproxy

haproxy配置

cd /opt/export/app/haproxy/haproxy

touch haproxy.cfg

vim haproxy.cfg

global
    log 127.0.0.1 local0 ##记日志的功能
    maxconn 4096
    chroot /opt/export/app/haproxy/haproxy
    user haproxy
    group haproxy
    node  ha-01
    daemon

defaults
    log global
    option dontlognull
    retries 3
    option redispatch
    maxconn 2000
    timeout connect 5000ms
    timeout client 50000ms
    timeout server 50000ms

listen admin_stats 172.16.2.4:48800 ##统计页面
    stats uri /admin-status 
    stats auth admin:admin
    mode http
    option httplog

listen mycat_service 172.16.2.4:3306 ##客户端就是通过这个ip和端口进行连接,这个vip和端口绑定的是mycat8066端口
    mode tcp
    option tcplog
    option httpchk OPTIONS * HTTP/1.1\r\nHost:\ www
    balance roundrobin
    server mycat01 172.16.1.93:8066 check port 48700 inter 5s rise 2 fall 3
    server mycat02 172.16.2.1:8066 check port 48700 inter 5s rise 2 fall 3
    timeout server 20000

listen mycat_admin 172.16.2.4:3406 ##客户端就是通过这个ip和端口进行连接,这个vip和端口绑定的是mycat9066端口
    mode tcp
    option tcplog
    option httpchk OPTIONS * HTTP/1.1\r\nHost:\ www
    balance roundrobin
    server mycat01 172.16.1.93:9066 check port 48700 inter 5s rise 2 fall 3
    server mycat02 172.16.2.1:9066 check port 48700 inter 5s rise 2 fall 3
    timeout server 20000
配置haproxy记录日志功能

yum –y install rsyslog

mkdir /etc/rsyslog.d

cd /etc/rsyslog.d/

touch haproxy.conf

vim haproxy.conf

$ModLoad imudp
$UDPServerRun 514
local0.* /opt/export/log/haproxy/haproxy.log

vim /etc/rsyslog.conf

#### RULES ####上面一行加入以下内容

# Include all config files in /etc/rsyslog.d/
$IncludeConfig /etc/rsyslog.d/*.conf

local7.* /var/log/boot.log下面加入以下内容

local0.*    /opt/export/log/haproxy/haproxy.log
重启rsyslog服务

service rsyslog restart

将rsyslog加入自动启动服务
chkconfig --add rsyslog
chkconfig --level 2345 rsyslog on
创建haproxy启停脚本

启动脚本

touch /opt/export/app/haproxy/haproxy/sbin/start &&
chmod +x /opt/export/app/haproxy/haproxy/sbin/start &&
vim /opt/export/app/haproxy/haproxy/sbin/start

#!/bin/sh
/opt/export/app/haproxy/haproxy/sbin/haproxy -f /opt/export/app/haproxy/haproxy/haproxy.cfg &

停止脚本

touch /opt/export/app/haproxy/haproxy/sbin/stop &&
chmod +x /opt/export/app/haproxy/haproxy/sbin/stop &&
vim /opt/export/app/haproxy/haproxy/sbin/stop

#!/bin/sh
ps -ef | grep sbin/haproxy | grep -v grep |awk '{print $2}'|xargs kill -s 9
授权

chown -R haproxy.haproxy /opt/export/app/haproxy/haproxy/*

启动

sudo /opt/export/app/haproxy/haproxy/sbin/start

检查haproxy是否启动成功

netstat -ntlp | grep :48800

你可能感兴趣的:(mycat高可用集群搭建文档)