centos 安装 nginx

见有道云笔记


1.   nginx.org 下载  stable(稳定版)

wget  http://nginx.org/download/nginx-1.6.3.tar.gz

解压缩 tar -zxvf nginx-1.6.3.tar.gz

cd nginx-1.6.3

2.安装依赖包gcc

yum -y install gcc

3.安装pcre-devel

yum -y install pcre-devel

4.安装zlib

yum -y install zlib-devel

5.建立用户

groupadd -r nginx

useradd -s /sbin/nologin -g nginx -r nginx

6.编译nginx

./configure \

--prefix=/usr/local/nginx \

--user=nginx \

--group=nginx

这是别人安装的参数  http://tech.jiakon.com/

./configure \ --prefix=/usr/local/nginx \ --sbin-path=/usr/sbin/nginx \ --conf-path=/etc/nginx/nginx.conf \ --with-http_stub_status_module \ --user=nginx \ --group=nginx \ --with-http_ssl_module \ --with-http_flv_module \ --with-http_gzip_static_module \ --error-log-path=/var/log/nginx/error.log \ --pid-path=/var/run/nginx/nginx.pid \ --http-log-path=/var/log/nginx/access.log \ --http-client-body-temp-path=/var/tmp/nginx/client \ --http-proxy-temp-path=/var/tmp/nginx/proxy \ --http-fastcgi-temp-path=/var/tmp/nginx/fcgi

)

7.安装

make && make install

8.启动nginx

cd /usr/local/nginx

sbin/nginx

9.停止

sbin/nginx -s stop

10.重启

sbin/nginx -s reload

11.检查修改的配置文件是否有错

sbin/nginx -t

你可能感兴趣的:(centos 安装 nginx)