nginx

作者: 野薇薇 | 来源:发表于2017-09-22 15:36 被阅读0次

    一篇特别好的教材 如何在linux下安装nginx http://www.linuxidc.com/Linux/2016-08/134110.htm
    为了防止找不到了,我就拷贝一份过来,哈哈哈
    linux开放端口https://www.cnblogs.com/moxiaoan/p/5683743.html

    Linux中Nginx安装与配置详解(CentOS-6.5:nginx-1.5.0)。

    1 Nginx简介

    Nginx ("engine x") 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器。 Nginx 是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的,第一个公开版本0.1.0发布于2004年10月4日。其将源代码以类BSD许可证的形式发布,因它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名。2011年6月1日,nginx 1.0.4发布。

    2 Nginx下载

    1)pcre http://www.pcre.org/ 2)nginx http://nginx.org/
    3)本次安装所有的软件资源包地址
    Linux公社资源站下载:
    ------------------------------------------分割线------------------------------------------
    免费下载地址在 http://linux.linuxidc.com/
    用户名与密码都是www.linuxidc.com
    具体下载目录在 /2016年资料/8月/10日/Linux中Nginx安装与配置详解/
    下载方法见 http://www.linuxidc.com/Linux/2013-07/87684.htm
    ------------------------------------------分割线------------------------------------------

    3 Nginx安装

    3.1 安装前的准备

    1)准备 pcre-8.12.tar.gz。该文件为正则表达式库。让nginx支持rewrite需要安装这个库。 2) 准备 nginx-1.5.0.tar.gz。该文件为nginx的linux版本安装文件。 3)确保进行了安装了linux常用必备支持库。
    Linux中必备常用支持库的安装(CentOS-6.5)
    在CentOS安装软件的时候,可能缺少一部分支持库,而报错。这里首先安装系统常用的支持库。那么在安装的时候就会减少很多的错误的出现。

     yum install -y gcc gdb strace gcc-c++ autoconf libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs patch e2fsprogs-devel krb5-devel libidn libidn-devel openldap-devel nss_ldap openldap-clients openldap-servers libevent-devel libevent uuid-devel uuid mysql-devel
    
    3.2 正则表达式库安装
    1. 确保进行了安装了linux常用必备支持库。检查是否安装了g++、gcc。rpm -qa | grep gcc 之后需要出现3个包如下图所示。如果没有出现。需要安装g++、gcc。
        # yum install gcc-c++
    
    1. 上传pcre-8.12.tar.gz, nginx-1.5.0.tar.gz 到 /usr/local/src/nginx目录下。
      3)解压pcre-8.12.tar.gz # cd /usr/local/src/nginx # tar zxvf pcre-8.12.tar.gz
      4)进入解压后的目录 # cd pcre-8.12
      5)配置 # ./configure
    2. 编译 # make
    3. 安装 # make install

    3.3 Nginx安装

    1. 创建用户nginx使用的www用户。 # groupadd www #添加www组 # useradd -g www www -s /bin/false #创建nginx运行账户www并加入到www组,不允许www用户直接登录系统 创建安装目录与日志目录 a) 安装目录 # mkdir /usr/local/nginx b) 日志目录 # mkdir /data0/logs/nginx # chown www:www /data0/logs/nginx -R 1) 判断系统是否安装了zlib-devel。如果没有安装。使用 # yum install -y zlib-devel
      Linux中Nginx安装与配置详解 2) 解压 # cd /usr/local/src/nginx # tar zxvf nginx-1.5.0.tar.gz 3) 进入目录 # cd nginx-1.5.0 4) 配置。通常将软件安装在/usr/local/目录下。 # ./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_realip_module
      5)编译 # make
    2. 安装 # make install
    3. 检查是否安装成功 # cd /usr/local/nginx/sbin # ./nginx -t
      结果显示:
      nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok    nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
    3.4 配置防火墙80端口    #修改防火墙配置:     # vi + /etc/sysconfig/iptables    #添加配置项     -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT    #重启防火墙     # service iptables restart
     
    #####3.5 上传配置文件   
     1)上传nginx.conf (文件下载地址见上面的Linux公社资源站)    # cd /usr/local/nginx/conf    # rz nginx.conf    2) 上传fastcgi_params.phis    # rz fastcgi_params.phis
    3.6 启动停止重启与测试    1)启动        #方法1        # /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf        #方法2        # cd /usr/local/nginx/sbin        # ./nginx
        2) 停止        #查询nginx主进程号         ps -ef | grep nginx        #停止进程         kill -QUIT 主进程号         #快速停止         kill -TERM 主进程号         #强制停止         pkill -9 nginx        3) 重启(首次启动需:/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf)        /usr/local/nginx/sbin/nginx -s reload        4)测试        #测试端口         netstat -na | grep 80        #浏览器中测试         [http://ip:80](http://ip/)

    相关文章

      网友评论

          本文标题:nginx

          本文链接:https://www.haomeiwen.com/subject/rasfextx.html