CentOS6.6 安装 nginx-1.8.0

前端之家收集整理的这篇文章主要介绍了CentOS6.6 安装 nginx-1.8.0前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装

安装依赖库和模块

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

安装 PCRE 模块

PCRE 作用是让 Ngnix 支持 Rewrite 功能

wget http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz
tar zxvf pcre-8.35.tar.gz
cd pcre-8.36
./configure
make && make install

编译安装Nginx

wget http://Nginx.org/download/Nginx-1.8.0.tar.gz
tar zxvf Nginx-1.8.0.tar.gz
cd Nginx-1.8.0  
./configure --prefix=/usr/local/webserver/Nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/NginxModule/pcre-8.35
make 
make install

usr/local/NginxModule/pcre-8.35 这个用自己的安装目录,如果安装新模块,就像上面安装pcre类似,然后在重写编译安装Nginx即可。也可以把 /usr/local/Nginx/sbin 加到环境变量中。

常用命令

Nginx -v      //查看版本信息
Nginx -V      //查看安装了那些模块
/usr/local/Nginx/sbin/Nginx –s reload  //重启
/usr/local/Nginx/sbin/Nginx –s stop    //停止
/usr/local/Nginx/sbin/Nginx –t         //测试配置文件是否正常
pkill Nginx           //强制关闭
killall Nginx

[参考]
Centos 下 Nginx 安装与配置
Nginx 安装配置

原文链接:https://www.f2er.com/centos/381378.html

猜你在找的CentOS相关文章