标签:验证 col 等于 均衡 http服务 文件 虚拟机 baidu sgi
下载安装包
链接: https://pan.baidu.com/s/1kT0UttIciA6KB76b1Z4snQ 密码: 64kr
移植到centos的/usr/local目录下
解压
[root@node01 local]# tar -zxvf nginx-1.10.3.tar.gz
进入解压目录
[root@node01 local]# cd nginx-1.10.3
复制下面这段内容,执行configure,生成Makefile
./configure --prefix=/usr/local/nginx --pid-path=/var/run/nginx/nginx.pid --lock-path=/var/lock/nginx.lock --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --with-http_gzip_static_module --http-client-body-temp-path=/var/temp/nginx/client --http-proxy-temp-path=/var/temp/nginx/proxy --http-fastcgi-temp-path=/var/temp/nginx/fastcgi --http-uwsgi-temp-path=/var/temp/nginx/uwsgi --http-scgi-temp-path=/var/temp/nginx/scgi
编译
[root@node01 nginx-1.10.3]# make
安装
[root@node01 nginx-1.10.3]# make install
创建链接
[root@node01 nginx-1.10.3]# ln -s /usr/local/nginx/sbin/nginx /usr/local/bin/nginx
验证配置有没有问题
[root@node01 nginx-1.10.3]# nginx -t
如果出现缺少文件夹的报错,自己创建一下
[root@node01 nginx-1.10.3]# mkdir /var/temp/nginx/
检查防火墙状态
[root@node01 nginx-1.10.3]# systemctl status firewalld.service
启动,查看进程
[root@node01 nginx-1.10.3]# nginx
[root@node01 nginx-1.10.3]# ps aux|grep nginx
在浏览器输入centos网址,会出现Welcome to nginx界面
关闭并查看进程
[root@node01 nginx-1.10.3]# nginx -s stop
[root@node01 nginx-1.10.3]# ps aux|grep nginx
启动后,若修改配置,如下刷新即可,不需要重启nginx
[root@node01 nginx-1.10.3]# nginx
[root@node01 nginx-1.10.3]# nginx -s reload
[root@node01 nginx-1.10.3]# cd /usr/local/nginx
[root@node01 nginx]# ll
[root@node01 nginx]# cd conf
[root@node01 conf]# pwd
/usr/local/nginx/conf
[root@node01 conf]# cat nginx.conf
如下目录,存的图片外部可以直接访问
[root@node01 html]# pwd
/usr/local/nginx/html
[root@node01 html]# ll
总用量 8
-rw-r--r-- 1 root root 537 4月 25 15:32 50x.html
-rw-r--r-- 1 root root 612 4月 25 15:32 index.html
-rw------- 1 root root 69470 6月 28 18:37 WechatIMG19.jpeg
省钱、省事,直接修改配置文件
1、复制一份html文件夹,叫py
[root@node01 nginx]# cp -r html/ py
2、修改index.html,让自己能区分
[root@node01 nginx]# cd py
[root@node01 py]# ll
总用量 8
-rw-r--r-- 1 root root 537 4月 25 16:27 50x.html
-rw-r--r-- 1 root root 10 4月 25 16:28 index.html
-rw-r--r-- 1 root root 0 4月 25 16:31 nginx.conf
[root@node01 py]# vi index.html
3、在原server下,再加一个server,配置nginx.conf
[root@node01 conf]# pwd
/usr/local/nginx/conf
[root@node01 conf]# vi nginx.conf
server{
listen 85;
server_name _;
location / {
root py;
index index.html index.htm;
}
}
4、刷新配置
[root@node01 conf]# nginx -s reload
1、配置里,可以把如下注释打开,自己创建错误页面
2、创建一个对应的404.html
[root@node01 html]# echo "very sorry" > 404.html
3、刷新配置
[root@node01 html]# nginx -s reload
打开proxy_pass解释,配置192.168.190.130:85,当访问80端口的时候,实际上会转发到85端口
刷新配置
[root@node01 conf]# nginx -s reload
1、修改配置文件
[root@node01 conf]# vi nginx.conf
2、添加负载均衡池,80端口反向代理到负载均衡池
upstream my_server{
server 172.16.45.131:85 weight=1;
server 172.16.45.131:90 weight=1;
}
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
# root html;
# index index.html index.htm;
proxy_pass http://my_server;
}
...
server{
listen 85;
server_name _;
location / {
root py;
index index.html index.htm;
}
}
server{
listen 90;
server_name _;
location / {
root py2;
index index.html index.htm;
}
}
3、复制py,创建py2,修改index.html文件,有区分就行
[root@node01 nginx]# cp -r py/ py2
4、刷新配置
[root@node01 nginx]# nginx -s reload
5、页面访问,此时实现了反向代理到85和90,按照权重去访问
标签:验证 col 等于 均衡 http服务 文件 虚拟机 baidu sgi
原文地址:https://www.cnblogs.com/ghh520/p/13209568.html