安装nginx 以及nginx负载均衡

℡╲_俬逩灬. 提交于 2019-11-30 15:01:12

a  安装

[root@localhost ~]# yum -y install gcc automake autoconf libtool make
yum install gcc gcc-c++

安装pcre
cd /usr/local/src
wget    https://netix.dl.sourceforge.net/project/pcre/pcre/8.40/pcre-8.40.tar.gz
tar -zxvf pcre-8.40.tar.gz
cd pcre-8.40
./configure
make && make install

安装zlib

cd /usr/local/src
wget http://zlib.net/zlib-1.2.11.tar.gz      wget  http://www.zlib.net/zlib-1.2.11.tar.gz
tar -zxvf zlib-1.2.11.tar.gz
cd zlib-1.2.11
./configure
make && make install
yum install -y zlib zlib-devel

安装openssl
cd /user/local/scr
wget https://www.openssl.org/source/openssl-1.0.1t.tar.gz
tar -zxvf openssl-1.0.1t.tar.gz


安装nginx
cd /user/local/scr
wget http://nginx.org/download/nginx-1.1.10.tar.gz
tar zxvf nginx-1.1.10.tar.gz 
cd nginx-1.1.10
./configure
make && make install
启动nginx
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

cd ~
开启端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
[root@localhost ~]# systemctl stop firewalld.service
[root@localhost ~]# systemctl start firewalld.service








firewall-cmd --zone=public --add-port=80/tcp --permanent

systemctl stop firewalld.service
systemctl start firewalld.service

搭建负载均衡

准备两台计算机:

nginx1 192.168.142.131       作为nginx的负载均衡器

nginx2  192.168.142.135   web服务,提供一个页面

 

1.配置web页面

vim /usr/local/nginx/html

然后启动nginx

2. 准备负载均衡器,修改以下配置

 

做反向代理

 

 

 

 

 

分别在负载均衡器和web页面开启日志查看

tail -f /usr/local/nginx/logs/access.log 

  

 

 

 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!