在Linux和Windows系统上安装Nginx服务器的教程
1.在centos系统上安装nginx
在 centos6 版本的 epel 源中,已经加入了 nginx 的 rpm 包,不过此 rpm 包版本较低。如果需要更新版本,可以使用官方制作的 rpm 包,或者使用源码包编译安装。
还可以使用一些二次开发功能增强的 nginx 版本,例如淘宝的 tengine 和 openresty 都是不错的选择。
1.1 常用编译参数
--prefix=path:指定 nginx 的安装目录
--conf-path=path:指定 nginx.conf 配置文件路径
--user=name:nginx 工作进程的用户
--with-pcre:开启 pcre 正则表达式的支持
--with-http_ssl_module:启动 ssl 的支持
--with-http_stub_status_module:用于监控 nginx 的状态
--with-http-realip_module:允许改变客户端请求头中客户端 ip 地址
--with-file-aio:启用 file aio
--add-module=path:添加第三方外部模块
这里提供一个完整的编译方案:
--prefix=/usr/local/nginx \ --conf-path=/etc/nginx/nginx.conf \ --error-log-path=/var/log/nginx/error.log \ --http-log-path=/var/log/nginx/access.log \ --http-client-body-temp-path=/var/tmp/nginx/client_body \ --http-proxy-temp-path=/var/tmp/nginx/proxy \ --http-fastcgi-temp-path=/var/tmp/nginx/fastcgi \ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \ --pid-path=/var/run/nginx.pid \ --lock-path=/var/lock/nginx \ --user=nginx \ --group=nginx \ --with-file-aio \ --with-http_ssl_module \ --with-http_realip_module \ --with-http_sub_module \ --with-http_gzip_static_module \ --with-http_stub_status_module \ --with-pcre
1.2 nginx 的启动和关闭
启动 nginx:
# nginx -c /etc/nginx/nginx.conf
关闭 nginx
# nginx -s stop
重读配置文件
# nginx -s reload # pkill -hup nginx
重新打开日志文件
# nginx -s reopen # pkill -usr1 nginx
还可以下载 nginx rpm 包中的 /etc/init.d/nginx 文件,修改路径后即可使用:
# service nginx {start|stop|status|restart|reload|configtest|}
2.在windows系统上安装nginx
首先去官网下载 nginx1.0.11的windows版本,官网下载:http://nginx.org/download/nginx-1.0.11.zip
下载到软件包后,解压 nginx-nginx1.0.11.zip 包到你喜欢的根目录,并将目录名改为nginx。
然后,执行下列操作:
cd nginx start nginx
nginx -s stop // 停止nginx nginx -s reload // 重新加载配置文件 nginx -s quit // 退出nginx
上一篇: Mysql连接join查询原理知识点