nginx常用命令

安装(linux环境)

  1. 解压
  2. ./configure
  3. make
  4. make install
  5. whereis nginx 查看nginx的安装的位置 (nginx 默认安装到 /usr/local/nginx目录下)

ngixn 常用的命令

./nginx   #进入 sbin目录下执行命令 启动nginx cd /usr/local/nginx/sbin
./nginx -s stop # 关闭
./nginx -s quit # 退出
./nginx -s reload # 修改配置文件之后需要重新加载
ps -aux | grep nginx # 查看nginx的进程

防火墙相关命令

service firewalld start  #开启
service firewalld restart #重启
service firewalld stop #关闭
firewall-cmd --list-all #查看防火墙规则
firewall-cmd --query-port=8080/tcp #查询端口是否开放
firewall-cmd --permanent --add-port=80/tcp #开放80端口
firewall-cmd --permanent --remove-port=8080/tcp #移除端口

firewall-cmd --reload #重启防火墙(修改配置后要重启防火墙)
posted @ 2021-06-25 15:15  紫川先生  阅读(710)  评论(0编辑  收藏  举报