nginx实现负载均衡 机器前期准备: 下载httpd:[root@fuwuq ~ ] yum -y install httpd 下载nginx:[root@fuwuq nginx-1.26.1]# wget https://nginx.org/download/nginx-1.26.1.tar.gz 解压:[root@fuwuq nginx-1.26.1]# tar -zxvf nginx-1.26.1.tar.gz 设置下载路径:[root@fuwuq nginx-1.26.1]# ./configure --prefix=/usr/local/nginx--user=nginx--group=nginx --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-stream 编译并下载:[root@fuwuq nginx-1.26.1]# make && make install 设置用户访问:[root@fuwuq nginx-1.26.1]# useradd -s /bin/nologin -M nginx 修改配置文件:[root@fuwuq nginx-1.26.1]# vim /usr/local/nginx/conf/nginx.conf 客户机访问:[root@2 ~]# curl 192.168.20.138 nginx负载均衡
1 | 服务器 | 192.168.20.138 |
2 | d0 | 192.168.20.139 |
3 | d1 | 192.168.20.140 |
4 | d2 | 192.168.20.141 |