一、nginx的启动命令
./nginx
二、重启
进入到nginx所在目录,执行
/usr/sbin/nginx -s reload
三、查看nginx进程
ps -ef|grep nginx
四、杀掉nginx进程
kill -QUIT 23423
五、如果修改了nginx的配置文件,记得要重启一下nginx服务
nginx -s reload
六、碰到该问题:nginx: [error] invalid PID number in nginx.pid
重启前一定要先检查,配置文件是否正确,没有问题再重启
nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
关掉nginx 的所有进程
killall nginx
重新启动 nginx
nginx
7、其他命令
创建文件:
touch 文件名称