2022
我们一起努力

详解Nginx常用操作

Nginx 是一款面向性能设计的 HTTP 服务器,相较于 Apache、lighttpd 具有占有内存少,稳定性高等优势,本篇文章重点为大家讲解一下Nginx常用操作。

img

检查nginx.conf是否语法错误

[root@localhost conf]# /usr/local/nginx/**in/nginx  -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

更新配置文件使其生效

[root@localhost conf]# /usr/local/nginx/**in/nginx  -s  reload

验证nginx是否配置有误

[root@localhost **in]# /usr/local/nginx/**in/nginx -t -c /usr/local/nginx/conf/nginx.conf
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

启动nginx

[root@localhost **in]# /usr/local/nginx/**in/nginx -c /usr/local/nginx/conf/nginx.conf

查看nginx进程

[root@localhost **in]# ps -ef|grep nginx
root       4870      1  0 22:35 ?        00:00:00 nginx: master process /usr/local/nginx/**in/nginx -c /usr/local/nginx/conf/nginx.conf
nginx      4871   4870  0 22:35 ?        00:00:00 nginx: worker process
root       4873   2389  0 22:35 pts/0    00:00:00 grep --color=auto nginxs

本文来源:www.lxlinux.net/4888.html,若引用不当,请联系修改。

赞(0)
文章名称:《详解Nginx常用操作》
文章链接:https://www.fzvps.com/182306.html
本站文章来源于互联网,如有侵权,请联系管理删除,本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。
图片版权归属各自创作者所有,图片水印出于防止被无耻之徒盗取劳动成果的目的。

评论 抢沙发

评论前必须登录!