#本文欢迎转载,转载请注明出处和作者。
理论部分,在上一篇文章已经说明过了,详见:
繁星亮与鲍包包:【理论研究】业务系统高可用及负载均衡zhuanlan.zhihu.com本篇从“2、WEB与数据库功能拆分”具体的技术实现讲起。
2、WEB与数据库服务拆分
功能拆分,需要准备2台服务器,分别安装apache与mysql,然后还需要进行两步不同的配置:
1)数据库里面授予应用账号远程主机访问的权限;
grant all on dqzqcw.* to 'dqzqcw'@'10.1.30.24' identified by 'password';
flush privileges;
如果@后面输入'%'则是允许任意IP地址访问。
2)以LAMP的网站搭建实例为例,只需要在网站链接数据库的配置文件;
cd /var/www/html/
进入apache web目录,修改名为config.php的文件
vi config.php
$db_config['DB_HOST'] = '10.1.30.28'
然后重启apache服务,即可。
service httpd restart
3、WEB服务器高可用
WEB服务器不做HA,只做负载均衡,因为WEB服务器做HA没有什么意义。
4、WEB服务器负载均衡
准备前提:需要提前安装好2台Apache与1台数据库,详细参考:
繁星亮与鲍包包:【实战演练】Linux操作系统05-用LAMP搭建网站zhuanlan.zhihu.com搭建Nginx,对WEB服务器做负载均衡。
Nginx,应该通过访问Apache01与Apache02的IP地址,都能够正常访问网站。
此外,防火墙与SELINUX也需要关闭。
4.1安装过程
1) 安装必要的依赖包
yum -y install gcc gcc-c++ autoconf automake make pcre-devel zlib-devel
2)下载nginx
wget http://nginx.org/download/nginx-1.14.0.tar.gz
tar -xzvf nginx-1.14.0.tar.gz
3)安装nginx
cd nginx-1.14.0/
./configure --prefix=/usr/local/nginx/
如果显示如下,即没有报错,否则还要手动根据报错安装其他依赖包。
make
make install
4)开启、停止、reloadnginx
#开启
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
#停止
/usr/local/nginx/sbin/nginx -s quit
#重启
/usr/local/nginx/sbin/nginx -s reload
5)配置静态页面负载均衡
vi /usr/local/nginx/conf/nginx.conf
然后进行配置
注意proxy_pass后面的site要和upstream后面的取名保持一致。
然后重新访问域名/nginx服务器的IP地址,发觉可以正常访问页面了。
但是由于网页是一样的,所以无法看到是否在轮询2台Apache服务器,可以先将2台web服务器的/var/www/html/文件下的内容先拷贝走,然后手动创建index.html文件写入如下内容,区分到底nginx分发到哪台服务器。
Apache01
cd /var/www/
mv html htmlbak
mkdir html
cd html
vi index.html
This is 10.1.30.24
Apache02
cd /var/www/
mv html htmlbak
mkdir html
cd html
vi index.html
This is 10.1.30.25
重新访问Nginx服务器IP地址,不断刷新页面,发现访问请求已经是在Apache01与02服务器之间轮询。
6)额外参数
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
如果web的部署不是默认路径,可以将root /usr/share/nginx/html这个改为正确的web部署路径,如tomcat部署在/data/service/jspgou/下面,就修改。
7)设置nginx开启启动
vim /etc/init.d/nginx
内容如下
#!/bin/sh
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig: - 85 15
# description: NGINX is an HTTP(S) server, HTTP(S) reverse
# proxy and IMAP/POP3 proxy server
# processname: nginx
# config: /etc/nginx/nginx.conf
# config: /etc/sysconfig/nginx
# pidfile: /var/run/nginx.pid
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0
nginx="/usr/local/nginx/sbin/nginx"
prog=$(basename $nginx)
NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"
[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx
lockfile=/var/lock/subsys/nginx
make_dirs() {
# make required directories
user=`$nginx -V 2>&1 | grep "configure arguments:" | sed 's/[^*]*--user=([^ ]*).*/1/g' -`
if [ -z "`grep $user /etc/passwd`" ]; then
useradd -M -s /bin/nologin $user
fi
options=`$nginx -V 2>&1 | grep 'configure arguments:'`
for opt in $options; do
if [ `echo $opt | grep '.*-temp-path'` ]; then
value=`echo $opt | cut -d "=" -f 2`
if [ ! -d "$value" ]; then
# echo "creating" $value
mkdir -p $value && chown -R $user $value
fi
fi
done
}
start() {
[ -x $nginx ] || exit 5
[ -f $NGINX_CONF_FILE ] || exit 6
#make_dirs
echo -n $"Starting $prog: "
daemon $nginx -c $NGINX_CONF_FILE
retval=$?
echo
[ $retval -eq 0 ] && touch $lockfile
return $retval
}
stop() {
echo -n $"Stopping $prog: "
killproc $prog -QUIT
retval=$?
echo
[ $retval -eq 0 ] && rm -f $lockfile
return $retval
}
restart() {
configtest || return $?
stop
sleep 1
start
}
reload() {
configtest || return $?
echo -n $"Reloading $prog: "
killproc $nginx -HUP
RETVAL=$?
echo
}
force_reload() {
restart
}
configtest() {
$nginx -t -c $NGINX_CONF_FILE
}
rh_status() {
status $prog
}
rh_status_q() {
rh_status >/dev/null 2>&1
}
case "$1" in
start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart|configtest)
$1
;;
reload)
rh_status_q || exit 7
$1
;;
force-reload)
force_reload
;;
status)
rh_status
;;
condrestart|try-restart)
rh_status_q || exit 0
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
exit 2
esac
增加执行权限
chmod a+x /etc/init.d/nginx
先将nginx服务加入chkconfig管理列表:
chkconfig --add /etc/init.d/nginx
设置终端模式开机启动:
chkconfig nginx on
可以进行nginx的服务启动、停止、重启测试
service nginx start
service nginx restart
service nginx stop