• Nginx安装


    Nginx安装

    安装必须依赖

    yum -y install make zlib zlib-devel gcc-c++ libtool  openssl openssl-devel
    
    • 1

    PCRE安装

    下载依赖文件

    下载 PCRE 安装包,下载地址: http://downloads.sourceforge.net/project/pcre/pcre/8.45/pcre-8.45.tar.gz
    
    • 1

    解压文件

    [root@ebs-135816 opt]# tar -zxvf pcre-8.45.tar.gz 
    
    • 1

    编译

    [root@ebs-135816 pcre-8.45]# ./configure 
    [root@ebs-135816 pcre-8.45]# make 
    [root@ebs-135816 pcre-8.45]# sudo make install
    
    • 1
    • 2
    • 3

    查看版本

    [root@ebs-135816 nginx-1.22.1]# pcre-config --version
    8.45
    [root@ebs-135816 nginx-1.22.1]# 
    
    • 1
    • 2
    • 3

    Nginx安装

    第二步:
    下载nginx http://nginx.org/download/nginx-1.6.2.tar.gz

    解压

    [root@ebs-135816 home]# tar -zxvf nginx-1.22.1.tar.gz 
    
    • 1

    编译

    [root@ebs-135816 home]# cd nginx-1.22.1/
    [root@ebs-135816 nginx-1.22.1]# ls
    auto  CHANGES  CHANGES.ru  conf  configure  contrib  html  LICENSE  man  README  src
    [root@ebs-135816 nginx-1.22.1]# ./configure --prefix=/home/nginx-1.22.1 --with-http_stub_status_module --with-http_ssl_module --with-pcre=/opt/pcre-8.45
    
    • 1
    • 2
    • 3
    • 4
    [root@ebs-135816 nginx-1.22.1]# make 
    
    • 1

    验证配置

    [root@ebs-135816 nginx-1.22.1]# mkdir logs
    [root@ebs-135816 nginx-1.22.1]# ./sbin/nginx -t
    nginx: the configuration file /home/nginx-1.22.1/conf/nginx.conf syntax is ok
    nginx: configuration file /home/nginx-1.22.1/conf/nginx.conf test is successful
    [root@ebs-135816 nginx-1.22.1]# 
    
    • 1
    • 2
    • 3
    • 4
    • 5

    启动服务

    [julong@localhost nginx]$ ./sbin/nginx 
    在网页试着访问下http://192.168.1.222:9090/
    ./sbin/nginx -s reload            # 重新载入配置文件
    ./sbin/nginx -s reopen            # 重启 Nginx
    ./sbin/nginx -s stop              # 停止 Nginx
    
    • 1
    • 2
    • 3
    • 4
    • 5
  • 相关阅读:
    一篇文章教会你Linux中的“启动类故障修复”和root密码修改
    MySQL优化、锁、总结常见问题
    win版redis详细安装教程
    前端技术选型与探索
    微服务Redis分布式锁配置成注解使用(AOP)
    算法——排序
    创建一个简单的外卖订餐系统
    @umijs/plugin-locale使用
    手机投屏到笔记本电脑小方法
    Mysql慢sql优化
  • 原文地址:https://blog.csdn.net/u010416069/article/details/133961488