Linux系统环境下,lnmp环境的搭建

1、nginx安装参看nginx篇

常用的linux语句的使用:

a、systemctl status nginx   => 查看nginx的运行状态;

b、systemctl start nginx => 启动nginx

c、systemctl reload nginx => 重载nginx系统   可以使用 nginx -s reload -c /etc/nginx/nginx.conf替代

d、systemctl restart nginx => 重启nginx;

e、systemctl stop nginx => 停止nginx;

f、pstree | grep nginx  => nginx的进程管理 也可以使用 ps -ef | grep nginx| grep -v grep

g、netstat -tunpl | grep nginx => 查看端口

 

上一篇:PHP-我想提交一个表单而无需重新加载页面并且没有OK消息


下一篇:Python重新加载模块不会立即生效