Nginx入门笔记_第一篇
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx入门笔记_第一篇相关的知识,希望对你有一定的参考价值。
nginx部署
1、环境准备
[[email protected]~]# yum install pcre* openssl*
注明:
pcre ---> 支持rewrite功能
openssl* ---> 需要ssl的支持
2、安装nginx
[[email protected]]# tar zxf nginx-1.6.3.tar.gz
[[email protected] nginx-1.6.3]# ./configure\
>--prefix=/usr/local/nginx \
>--with-http_ssl_module \ 支持https
>--with-http_spdy_module \
>--with-http_stub_status_module \ 支持nginx状态查询
>--with-pcre 支持rewrite重写
[[email protected]]# make
[[email protected]]# make install
3、启动nginx
[[email protected] ~]# /usr/local/nginx/sbin/nginx
[[email protected] ~]# netstat -ntulp | grep 80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 29900/nginx
4、nginx关闭
[[email protected] ~]# /usr/local/nginx/sbin/nginx -s stop
nginx reload(重置出错)
[[email protected] ~]# /usr/local/nginx/sbin/nginx -s reload
nginx: [error] open()"/usr/local/nginx/logs/nginx.pid" failed (2: No such file ordirectory)
解决办法:
[[email protected] ~]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
本文出自 “Shaw Blog” 博客,请务必保留此出处http://opsedu.blog.51cto.com/9265055/1747096
以上是关于Nginx入门笔记_第一篇的主要内容,如果未能解决你的问题,请参考以下文章