环境:
centos7 192.168.186.140 (负载均衡)
centos7 192.168.186.141 (web端)
centos7 192.168.186.142 (web端)
安装nginx过程:安装在代理服务器上
第一步:下载、上传到服务器后
第二步:安装依赖包:
yum install pcre-devel automake make zlib-devel gcc-c++ libtool openssl openssl-devel -y
第三步:解压到指定位置:
tar -zxvf nginx-1.20.2.tar.gz -C /usr/local/
第四步:新建用户名:useradd nginx -s /sbin/nologin -M
第五步:开始编译:
./configure \
> --user=nginx \ #指定程序运行的用户
> --group=nginx \ #指定程序运行的用户组
> --prefix=/usr/local/nginx \ #指定安装目录
> --with-http_ssl_module \ #启用nginx-http_ssl_module的支持(使其支持https请求)
> --with-http_sub_module \ #启用nginx-http_sub_module的支持(允许用一些其他文本代替nginx)
> --with-http_stub_status_module \ #启用ngx_http_stub_status_module支持
> --with-http_gzip_static_module \#启用ngx_http_gzip_static_module支持
> --with-pcre #启用pcre库
make && make install
六:启动nginx
1、检查语法 /usr/local/nginx/sbin/nginx -t
2、启动nginx /usr/local/nginx/sbin/nginx
3、查看端口 lsof -i :80
七 .修改NGINX配置文件
[root@140 nginx-1.12.2]# vim /usr/local/nginx/conf/nginx.conf
修改完配置文件保存退出
八.启动NGINX
[root@140 nginx-1.12.2]# /usr/local/nginx/sbin/nginx
九.在两台web端安装Apache
[root@141 ~]# yum -y install httpd
[root@142 ~]# yum -y install httpd
十.修改Apache主页文件
十一.启动Apache
十二.测试
在浏览器输入NGINX服务器的ip地址之后多刷新几次网页,若nginx1与nginx2交替出现则为成功