1、重载配置

执行 nginx  -s   reload  命令,报错:找不到 nginx.pid 文件,无法打开。曾经屡试不爽的命令,此时,竟然失灵了? 刚开始,我一头雾水,有点丈二和尚摸不着头脑……

[root@127-0-0-1 nginx]# nginx -s reload
nginx: [error] open() "/var/run/nginx.pid" failed (2: No such file or directory)
[root@127-0-0-1 nginx]

问题一:为什么会报错?

答案: reload命令需要通过nginx.pid获取进程号,会去找/var/run.nginx.pid文件 ,如果不存在,就报错了。

2、进程文件

问题一:有关  pid(进程) 的配置在哪里?

[root@127-0-0-1 nginx]# vim nginx.conf

user  king;
worker_processes 4; error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;

答案:在 nginx.conf 文件中的 pid 参数。显然nginx.pid 文件,就应该存在 /var/run/ 目录下。

问题二:nginx.pid 的生存周期?

答案: 一般情况,重启nginx,就会在/var/run/下生成一个nginx.pid文件。关闭nginx 或 kill  nignx的主进程后,nginx.pid就会消失……

[root@127-0-0-1 run]# cd /var/run
[root@127-0-0-1 run]# find -name nginx.pid
[root@127-0-0-1 run]#

 奇怪,还真没有 nginx.pid 文件。那么问题就来了,为什么nginx在启动的状态下,nginx.pid竟丢失了? 它去哪了? 还是谁掳走了它?

3、陷入深思

nginx.pid 去哪了?怎么丢失的?

1、误删  rm  -f  nginx.pid

2、恶作剧    被哪个同事给耍了,还是城市套路深,我要回农村……

4、解决方案

1)创建 nginx.pid 文件 —— 不是找不到文件么,我给你创建一个不得了嘛^_^

nginx.pid存放的是nginx的master进程号。

问题一: nginx 主进程号是多少?怎么查?

[root@127-0-0-1 run]# ps -ef|grep nginx
king 11183 12666 0 14:45 ? 00:00:00 nginx: worker process
king 11184 12666 0 14:45 ? 00:00:00 nginx: worker process
king 11185 12666 0 14:45 ? 00:00:00 nginx: worker process
king 11186 12666 0 14:45 ? 00:00:00 nginx: worker process
root 11315 11042 0 15:43 pts/0 00:00:00 grep --color=auto nginx
root 12666 1 0 Jun14 ? 00:00:00 nginx: master process nginx
[root@127-0-0-1 run]#

 答案:nginx 主进程(master process)号:12666

[root@127-0-0-1 run]# touch nginx.pid
[root@127-0-0-1 run]# echo "12666" > nginx.pid
[root@127-0-0-1 run]# cat nginx.pid
12666
[root@127-0-0-1 run]#

 执行命令:nignx  -s  relaod 不报错了,问题解决了,喜悦心情油然而生……

[root@127-0-0-1 nginx]# nginx -s reload
[root@127-0-0-1 nginx]#

 2)重启nginx —— 重启成功后,会生成一个nginx.pid文件。问题的克星——重启,是一把万能钥匙……

步骤一:杀掉进程

kill  -9  master 和 worker 进程号

步骤二:重启nginx

方法一:nginx

方法二:nginx  -c  指定目录的配置文件    例:nginx  -c  /etc/nginx/nginx.conf

步骤三:查看nginx.pid 文件

[root@127-0-0-1 nginx]# cd /var/run
[root@127-0-0-1 run]# find -name nginx.pid
./nginx.pid
[root@127-0-0-1 run]#

  步骤四:重载配置

执行命令:nginx -s  reload ,不报错,问题解决了……

5、一顿瞎操作

想法一:进程文件写入一个不存在的进程号,重载配置会怎么样?

[root@127-0-0-1 run]# echo "8888"> nginx.pid
[root@127-0-0-1 run]# cat nginx.pid
8888
[root@127-0-0-1 run]# nginx -s reload
nginx: [alert] kill(8888, 1) failed (3: No such process)
[root@127-0-0-1 run]#

想法二:不杀进程,直接重启 nginx 会报错么?

[root@127-0-0-1 run]# nginx
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] still could not bind()
[root@127-0-0-1 run]#

报错:80端口,被占用。不是别人,是自己(nginx)……

想法三:写错配置,会有什么影响?

[root@127-0-0-1 conf.d]# cat app.conf
server {
listen 80; king #wrong location
server_name 0.0.0.0:80;

首先测试配置,然后重载

[root@127-0-0-1 conf.d]# nginx -t
nginx: [emerg] unknown directive "king" in /etc/nginx/conf.d/HKIN-CRS.conf:3
nginx: configuration file /etc/nginx/nginx.conf test failed
[root@127-0-0-1 conf.d]# nginx -s reload
nginx: [emerg] unknown directive "king" in /etc/nginx/conf.d/HKIN-CRS.conf:3
[root@127-0-0-1 conf.d]#

  

谁掳走了 nginx.pid 文件?的更多相关文章

  1. Nginx pid文件找不到 nginx: [error] open() "/run/nginx/nginx.pid" failed (2: No such file or directory)

    Nginx pid文件找不到 nginx: [error] open() "/run/nginx/nginx.pid" failed (2: No such file or dir ...

  2. nginx 启动报错找不到nginx.pid文件

    这个问题的出现应该是系统找不到nginx的配置文件nginx.conf,所以,我们要告诉系统配置文件的位置:' --- 使用nginx -c /usr/local/nginx/conf/nginx.c ...

  3. nginx重启报找不到nginx.pid的解决方法

    nginx被停止(nginx -s stop)或者直接杀掉了进程(kill -9 nginx的进程号)后,调用命令(nginx -s reload 或者 nginx -s reopen)会报错:无法找 ...

  4. 关于nginx.pid丢失的解决办法

    在停掉nginx的过程中突然出现如下的提示:

  5. 解决Nginx: [error] open() "/usr/local/Nginx/logs/Nginx.pid

    重新启动服务器,访问web服务发现无法浏览啦!登陆服务器之后进到nginx使用./nginx -s reload重新读取配置文件,发现报nginx: [error] open() "/usr ...

  6. linux之pid文件

    在命令行中经常看到*.pid文件 其实这些文件是在启动进程的时候系统给这个进程的master进程分配的进程号 比如/usr/local/nginx/logs/nginx.pid文件 打开这个文件会发现 ...

  7. 解决nginx: [error] open() "/usr/local/nginx/logs/nginx.pid" failed错误

    重新启动服务器,访问web服务发现无法浏览,登陆服务器之 后进到nginx使用./nginx -s reload重新读取配置文件,发现报nginx: [error] open() "/usr ...

  8. 解决linux重启后无法开启nginx问题“var/run/nginx/nginx.pid" no such file or directory问题

    起因:每次重启虚拟机后,var/run/nginx/目录都会被删除,所以无法在这个目录创建nginx.pid文件, 可以自己创建var/run/nginx/目录,然后可以运行,但治标不治本,下次虚拟机 ...

  9. 重启nginx后丢失nginx.pid的解决方法

    一,nginx的停止操作 停止操作是通过向nginx进程发送信号来实现的. 步骤1:查询nginx主进程号 复制代码 代码如下: ps -ef | grep nginx 在进程列表里 面找master ...

随机推荐

  1. USACO4.3 Street Race【分析】

    这道题,感觉不是很难,分析清楚之后非常简单.(标签都不知道怎么加) 读完题首先想到了分割点一定是必经点的一种特殊情况,如果分割点不是必经点的话,那么它就不能把这个图分成两半(存在不经过它的边沟通两半) ...

  2. 【miscellaneous】北斗短报文

    北斗系统最大的特色在于有源定位和短报文特色服务,不止解决了中国有无卫星导航系统的问题,还能将短信和导航结合,是中国北斗卫星导航系统的独特发明,也是一大优势. 北斗的短报文功能,在国防.民生和应急救援等 ...

  3. excel常用公式--数据清洗类

    trim:去除单元格两端的空格. concat/&:连接单元格内的内容. mid:  提取字符串中间的字符串. left:  提取字符串左边的字符串. right: 提取字符串右边的字符串. ...

  4. 最新的省市编码和sql

    下面的项目是整理的最新的省市编码sql文件,可以看看. github

  5. Vector和ArrayList的区别联系,Hashtable和HashMap的区别联系

    Vector.Hashtable是早期的集合类,线程安全,但是效率低下,被相同原理.结构的ArrayList.HashMap取代. 1.Vector和ArrayList的区别和联系: 联系:实现原理相 ...

  6. Integer类的常量池

  7. 用C#取个中文名字

    *注意:此方法获得的名字很可能出现生僻字,若要get一个好记/常见的名字,还请另作操作. 以百家姓(444个单姓,60个复姓)作为姓氏,再添加两个随机的中文,You can get a chinese ...

  8. Codeforces 1220B. Multiplication Table

    传送门 冷静分析容易发现,我们只要能确定一个数的值,所有值也就可以确定了 确定一个数的值很容易,$a_ia_j=M_{i,j},a_ia_k=M_{i,k},a_ja_k=M_{j,k}$ 然后就可以 ...

  9. SQL 基础语句整理

    SQL教程 SELECT 语句 SELECT * FROM 表名称 DISTINCT 语句 SELECT DISTINCT 列名称 FROM 表名称 SELECT LastName,FirstName ...

  10. python format格式化函数用法

    python format格式化函数用法 原文 Python2.6 开始,新增了一种格式化字符串的函数 str.format(),它增强了字符串格式化的功能. 基本语法是通过 {} 和 : 来代替以前 ...