由于以下方式只能安装1.14.1版本
- 安装Nginx:
sudo yum install nginx
Nginx常用命令
方法一:编辑/etc/rc.local,添加开机启动运行命令
直接编辑/etc/rc.local文件,文件内容最底下添加启动命令: /usr/local/nginx/sbin/nginx
1、启动Nginx服务器命令:
去到sbin路径:cd /usr/local/nginx/sbin
启动Nginx服务器: ./nginx
2、查看Nginx 版本号命令:
./nginx -v
或
./nginx -V
查看Nginx进程命令:
ps aux|grep nginx
检查Nginx配置文件是否正确命令:
./nginx -t
指定检测特定Nginx配置文件:-c表示configuration,指定配置文件
./nginx -t -c /usr/local/nginx/conf/nginx.conf
Nginx服务器指定启动配置文件命令:
./nginx -c /usr/local/nginx/conf/nginx.conf
暴力停止Nginx服务器命令:
./nginx -s stop
优雅停止Nginx服务器命令:
./nginx -s quit
Nginx重新加载配置文件命令:
./nginx -s reload
标签:命令,配置文件,nginx,V10,麒麟,Nginx,usr,local
From: https://blog.51cto.com/u_16200678/6940680