zoukankan      html  css  js  c++  java
  • 解决 nginx: [alert] kill(189, 1) failed (3: No such process)

     

    重新启动服务器,访问web服务发现无法浏览啦!登陆服务器之后进到nginx使用./nginx -s reload重新读取配置文件,发现报nginx: [error] open() "/usr/local/nginx/logs/nginx.pid" failed (2: No such file or directory)错误,进到logs文件发现的确没有nginx.pid文件

      [root@localhost sbin]# ./nginx -s reload

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

      解决方法:

      [root@localhost nginx]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

      使用nginx -c的参数指定nginx.conf文件的位置

      [root@localhost nginx]# cd logs/

      [root@localhost logs]# ll

      总用量 12

      -rw-r--r-- 1 root root 1246 12月 9 18:10 access.log

      -rw-r--r-- 1 root root 516 12月 10 15:39 error.log

      -rw-r--r-- 1 root root 5 12月 10 15:38 nginx.pid

      看nginx.pid文件已经有了。

    解决 nginx: [alert] kill(189, 1) failed (3: No such process)

    [root@localhost/]# nginx -s reload
    nginx: [alert] kill(189, 1) failed (3: No such process)  杀死189进程,可是并没有
    [root@localhost /]# whereis ngnix
    ngnix:[root@localhost/]# 
    [root@localhost /]# find / -name nginx 
    /usr/local/src/nginx/sbin/nginx
    [root@localhost /]# find / -name nginx.conf
    /usr/local/src/nginx/conf/nginx.conf
    [root@localhost /]# /usr/local/src/nginx/sbin/nginx -c /usr/local/src/nginx/conf/nginx.conf
    [root@localhost/]# nginx -s reload            
     
    我执行/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf再重启就好了
     
     
     
     
     
     
     
     
     
     
      
  • 相关阅读:
    秦腾与教学评估【前缀和+二分】
    c++中成员函数声明时const得作用
    分形【递归】
    飞行兄弟【二进制枚举+异或】
    爬取4k图片网图片
    爬虫爬取博客园文章的文字【练手】
    【YBTOJ】求 f 函数
    【YBTOJ】划分数列
    【学习笔记】高斯消元法
    【Luogu P4588】 [TJOI2018]数学计算
  • 原文地址:https://www.cnblogs.com/yiyaxuan/p/12619205.html
Copyright © 2011-2022 走看看