在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1.在CentOS系统上安装Nginx 还可以使用一些二次开发功能增强的 nginx 版本,例如淘宝的 Tengine 和 OpenResty 都是不错的选择。 --prefix=PATH:指定 nginx 的安装目录 这里提供一个完整的编译方案: --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
然后,执行下列操作: cd nginx start nginx 这样,nginx 服务就启动了。打开任务管理器,查看 nginx.exe 进程,有二个进程会显示,占用系统资源,那是相当的少。然后再打开浏览器,输入 http://127.0.0.1/ 就可以看到nginx的欢迎页面了,非常友好
nginx -s stop // 停止nginx nginx -s reload // 重新加载配置文件 nginx -s quit // 退出nginx |
请发表评论