集群10-linux下nginx编译安装

集群10-linux下nginx编译安装

1、下载相关组件

[root@localhost src]# wget http://nginx.org/download/nginx-1.10.2.tar.gz
[root@localhost src]# wget http://www.openssl.org/source/openssl-fips-2.0.10.tar.gz
[root@localhost src]# wget http://zlib.net/zlib-1.2.11.tar.gz
[root@localhost src]# wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.40.tar.gz
2、安装编译工具及软件
[root@localhost src]# yum -y install gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel
3、编译安装
./configure --prefix=/usr/local/nginx1
make && make install
4、启动nginx
/usr/local/nginx1/sbin/nginx
停止:
/usr/local/nginx1/sbin/nginx -s stop
重启:
/usr/local/nginx1/sbin/nginx -s reload
5、查看是否启动
ps -ef | grep nginx
6、nginx配置
vim /usr/local/nginx1/conf/nginx.conf
#user  nobody;  
#开启进程数 <=CPU数   
worker_processes  1;  


#错误日志保存位置  
#error_log  logs/error.log;  
#error_log  logs/error.log  notice;  
#error_log  logs/error.log  info;  


#进程号保存文件  
#pid        logs/nginx.pid;  


#每个进程最大连接数(最大连接=连接数x进程数)每个worker允许同时产生多少个链接,默认1024  
events {  
    worker_connections  1024;  
}  




http {  
    #文件扩展名与文件类型映射表  
    include       mime.types;  
    #默认文件类型  
    default_type  application/octet-stream;  


    #日志文件输出格式 这个位置相于全局设置  
    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '  
    #                  '$status $body_bytes_sent "$http_referer" '  
    #                  '"$http_user_agent" "$http_x_forwarded_for"';  


    #请求日志保存位置  
    #access_log  logs/access.log  main;  


    #打开发送文件  
    sendfile        on;  
    #tcp_nopush     on;  


    #keepalive_timeout  0;  
    #连接超时时间  
    keepalive_timeout  65;  


    #打开gzip压缩  
    #gzip  on;  


    server {  
        #监听端口,默认是80端口  
        listen       80;  
        #监听域名  
        server_name  localhost;  


        #charset koi8-r;  


        #nginx访问日志放在logs/host.access.log下,并且使用main格式(还可以自定义格式)  
        #access_log  logs/host.access.log  main;  


        #如果没有location更明确的匹配访问路径的话,访问请求都会被该location处理。  
        location / {  
            #root指定nginx的根目录为/usr/local/nginx/html  
            root   html;  
            #默认访问文件,欢迎页先去html目录下找index.html,如果找不到再去找index.htm  
            index  index.html index.htm;  
        }  


        #error_page  404              /404.html;  
        # redirect server error pages to the static page /50x.html  
        #  


        #错误页面及其返回地址,错误码为500、502、503、504都会返回50.html错误页面。  
        error_page   500 502 503 504  /50x.html;  
        #location后面是"="的话,说明是精确匹配  
        location = /50x.html {  
            root   html;  
        }  


        # proxy the PHP scripts to Apache listening on 127.0.0.1:80  
        #  
        #location ~ \.php$ {  
        #    proxy_pass   http://127.0.0.1;  
        #}  


        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000  
        #  
        #location ~ \.php$ {  
        #    root           html;  
        #    fastcgi_pass   127.0.0.1:9000;  
        #    fastcgi_index  index.php;  
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;  
        #    include        fastcgi_params;  
        #}  


        # deny access to .htaccess files, if Apache's document root  
        # concurs with nginx's one  
        #  
        #location ~ /\.ht {  
        #    deny  all;  
        #}  
    }  




    # another virtual host using mix of IP-, name-, and port-based configuration  
    #  
    #server {  
    #    listen       8000;  
    #    listen       somename:8080;  
    #    server_name  somename  alias  another.alias;  


    #    location / {  
    #        root   html;  
    #        index  index.html index.htm;  
    #    }  
    #}  




    # HTTPS server  
    #  
    #server {  
    #    listen       443 ssl;  
    #    server_name  localhost;  


    #    ssl_certificate      cert.pem;  
    #    ssl_certificate_key  cert.key;  


    #    ssl_session_cache    shared:SSL:1m;  
    #    ssl_session_timeout  5m;  


    #    ssl_ciphers  HIGH:!aNULL:!MD5;  
    #    ssl_prefer_server_ciphers  on;  


    #    location / {  
    #        root   html;  
    #        index  index.html index.htm;  
    #    }  
    #}  


}  
7、负载均衡配置(3台服务器为例)
使用举例:
# 定义负载均衡设备的Ip及设备状态
upstream mynginx{
ip_hash; # 每个请求按访问ip的hash结果分配,这样每个访客固定访问一个后端服务器,可以解决session的问题。
server 127.0.0.1:8000 down;
server 127.0.0.1:8080 weight=2;
server 127.0.0.1:6801;
server 127.0.0.1:6802 backup;
}


# 在需要使用负载均衡的server中增加proxy_pass http://mynginx;
server {
        listen 80;
        server_name localhost;
        #即所有请求都到这里去找分配
        location / {
       #使用mynginx分配规则,即刚自定义添加的upstream节点
           proxy_pass http://mynginx;
        }


每个设备的状态设置为:
1.down 表示单前的server暂时不参与负载
2.weight 默认为1.weight越大,负载的权重就越大。
3.max_fails :允许请求失败的次数默认为1.当超过最大次数时,返回proxy_next_upstream 模块定义的错误
4.fail_timeout:max_fails次失败后,暂停的时间。
5.backup: 其它所有的非backup机器down或者忙的时候,请求backup机器。所以这台机器压力会最轻。


#在负载均衡服务器上添加upstream节点
upstream mynginx{
    #分权 即访问11与12的次数比例为1比1
        server 10.0.0.11:8080 weight=1; # nginx1服务器
        server 10.0.0.12:8080 weight=1; # nginx2服务器
        }
    server {
        listen 80;
        server_name localhost;
        #即所有请求都到这里去找分配
        location / {
       #使用mynginx分配规则,即刚自定义添加的upstream节点
           proxy_pass http://mynginx;
        }
    }


 8、使用本地域名访问
 举例:
 (1)设置主机名
 hostnamectl set-hostname test.nginx.com
 (2)添加到hosts
 echo "test.nginx.com" >> /etc/hosts
 (3)设置windows的hosts文件
 添加:
 10.0.0.10  test.nginx.com
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
资源包主要包含以下内容: ASP项目源码:每个资源包中都包含完整的ASP项目源码,这些源码采用了经典的ASP技术开发,结构清晰、注释详细,帮助用户轻松理解整个项目的逻辑和实现方式。通过这些源码,用户可以学习到ASP的基本语法、服务器端脚本编写方法、数据库操作、用户权限管理等关键技术。 数据库设计文件:为了方便用户更好地理解系统的后台逻辑,每个项目中都附带了完整的数据库设计文件。这些文件通常包括数据库结构图、数据表设计文档,以及示例数据SQL脚本。用户可以通过这些文件快速搭建项目所需的数据库环境,并了解各个数据表之间的关系和作用。 详细的开发文档:每个资源包都附有详细的开发文档,文档内容包括项目背景介绍、功能模块说明、系统流程图、用户界面设计以及关键代码解析等。这些文档为用户提供了深入的学习材料,使得即便是从零开始的开发者也能逐步掌握项目开发的全过程。 项目演示与使用指南:为帮助用户更好地理解和使用这些ASP项目,每个资源包中都包含项目的演示文件和使用指南。演示文件通常以视频或图文形式展示项目的主要功能和操作流程,使用指南则详细说明了如何配置开发环境、部署项目以及常见问题的解决方法。 毕业设计参考:对于正在准备毕业设计的学生来说,这些资源包是绝佳的参考材料。每个项目不仅功能完善、结构清晰,还符合常见的毕业设计要求和标准。通过这些项目,学生可以学习到如何从零开始构建一个完整的Web系统,并积累丰富的项目经验。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值