一、服务、端口查询

1.1、服务查询及启停

  • 查询状态:systemctl status nginx

  • 重启服务:systemctl restart nginx

  • 停止服务:systemctl stop nginx

  • 启动服务:systemctl start nginx

  • 设置开机启动:systemctl enable nginx

  • 取消开机启动:systemctl disable nginx

1.2、端口监听查询

默认http协议用的是80端口,https协议用的是443端口,管理员可以在管理控制台中修改协议及端口,请根据实际情况来查询:

  • 端口监听查询:ss -ntpl |grep 80

二、版本、日志查询

2.1、版本查询

  • 版本查询:nginx -V

2.2、日志路径

  • 日志路径:/var/log/nginx/access.log以及/var/log/nginx/error.log

2.3、配置文件路径

/etc/nginx/nginx.conf

nginx_guanjia_http2https.conf

nginx_guanjia_http.conf

nginx_guanjia_ssl.conf

2.4、证书路径

  • 证书路径:/etc/nginx/ssl

其中SSL证书(一般是crt、pem后缀)在certs目录里,SSL证书密钥(一般是key后缀)在private目录里。