Centos 安装 Nginx 负载均衡
前言
Nginx (engine x) 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器。Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的,第一个公开版本0.1.0发布于2004年10月4日。 [ 百度百科 ]
开始
0 .安装编译环境
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel
yum install tcl
yum install gcc-c++
1 .去官网下载Nginx ,官网地址 https://nginx.org/en/download.html
cd /usr/local/
wget https://nginx.org/download/nginx-1.12.1.tar.gz
2 .解压压缩包
tar -zxvf nginx-1.12.1.tar.gz
3 .进入nginx文件夹,准备安装
cd /usr/local/nginx-1.12.1
./configure
make
make install
4 .进入安装好的nginx目录下,配置负载均衡
cd /usr/local/nginx/sbin
vi /usr/local/nginx/conf/nginx.conf
upstream www.test.com {
server 192.168.0.118:8080;
server 192.168.0.119:8080;
}
server {
server_name www.test.com ;
location / {
proxy_pass http://www.test.com;
}
}
5 .启动nginx
./nginx -t
./nginx
6 .其他命令
./nginx -s stop
./nginx -s quit
./nginx -s reload
结束
附上成功图片: