重装nginx出现,重启出现错误

 ./nginx -s reload

nginx: [error] open() "/usr/local/nginx/logs/nginx.pid" failed (2: No such file or directory)

 

解决办法:

 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

  命令解释:

 -c filename : set configuration file (default: conf/nginx.conf)  设置配置文件

 

设置成功之后在之前报错的路径下会生成 nginx.pid 文件

  在设置的时候可能会出现如下错误:

nginx: [emerg] bind() to 0.0.0.0:9929 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)

  这是因为我是重装nginx的,之前nginx没有停掉,可以使用命令杀死nginx进程

ps -ef | grep nginx | grep -v grep | awk '{print $2}' | xargs kill -9

  此时再-c  设置一下配置文件,之后再重启nginx

 

  

 

相关文章:

  • 2021-07-28
  • 2021-07-03
  • 2021-09-10
  • 2022-12-23
猜你喜欢
  • 2022-02-12
  • 2021-09-26
  • 2022-12-23
  • 2021-07-29
相关资源
相似解决方案