linux安装nginx

pcre是用C语言编写的正则表达式函数库,nginx的rewrite需要正则表达式的支持,所以需要先安装pcre

 

一、安装基础套件

yum install -y gcc gcc-c++
yum install -y pcre-devel
yum install -y zlib-devel

 

二、安装nginx

最新地址在:http://nginx.org/en/download.html

执行:

[root@ctxsdhy package]# wget http://nginx.org/download/nginx-1.12.1.tar.gz
[root@ctxsdhy package]# tar -zxf nginx-1.12.1.tar.gz
[root@ctxsdhy package]# cd nginx-1.12.1
[root@ctxsdhy nginx-1.12.1]# ./configure --prefix=/usr/local/nginx
[root@ctxsdhy nginx-1.12.1]# make && make install

 

三、nginx命令

启动

cd /usr/local/nginx/sbin
./nginx

重启

./nginx -s reload

关闭

kill -9 xxx

 

posted @ 2017-09-24 10:04  syxsdhy  阅读(159)  评论(0编辑  收藏  举报