CentOS7
使用yum 安装的话,默认是作为服务器,开机自动启动的
启动nginx服务
systemctl start nginx.service
停止nginx服务
systemctl stop nginx.service
重启nginx服务
systemctl restart nginx.service
重新读取nginx配置(这个最常用, 不用停止nginx服务就能使修改的配置生效)
systemctl reload nginx.service
状态查询
systemctl status nginx.service
端口占用
netstat -tunlp |grep 端口号