当前位置:论坛首页 > Linux面板 > 求助

【已完成】出现错误:数据获取失败,检查nginx状态是否正常!

发表在 Linux面板2022-10-22 15:49 [复制链接] 9 8439

本帖最后由 堡塔运维香菜卷 于 2023-7-24 11:59 编辑

(论坛无法上图。。。图标没显示出来上传不了,就不上传了)



已经重启nginx和重载配置,也施工重启服务器,还是不行

错误日志只有一条:
2021/05/06 13:23:34 [alert] 1084#0: worker process 1085 exited on signal 9

使用道具 举报 只看该作者 回复
发表于 2022-10-24 17:15:20 | 显示全部楼层
堡塔安全木兰 发表于 2022-10-22 18:50
这可能是nginx宕机了,或者nginx状态获取的配置文件丢失导致的;
可以将nginx的配置文件复制出来,主程序的 ...

你好,卸载后,安装编译的1.22后,还是这样显示。之前是1.19版
使用道具 举报 回复 支持 反对
发表于 2022-10-25 09:51:54 | 显示全部楼层
ycy0515 发表于 2022-10-24 17:15
你好,卸载后,安装编译的1.22后,还是这样显示。之前是1.19版

您好,服务器内执行下面命令访问看下是否正常呢
  1. curl http://127.0.0.1/nginx_status
复制代码
使用道具 举报 回复 支持 反对
发表于 2022-10-25 14:23:15 | 显示全部楼层
谢花郎 发表于 2022-10-25 09:51
您好,服务器内执行下面命令访问看下是否正常呢

你好,卸载重装1.19版本,输入你的命令后,出现这个:
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
[root@centos ~]#
使用道具 举报 回复 支持 反对
发表于 2022-10-25 14:55:45 | 显示全部楼层
ycy0515 发表于 2022-10-25 14:23
你好,卸载重装1.19版本,输入你的命令后,出现这个:

404 Not Found

404是提示不存在,您那边到/www/server/panel/vhost/nginx这个路径下
查看下phpfpm_status.conf文件内容是否存在获取Nginx负载的内容。如果不存在则添加下面内容重新访问打开

  1. listen 80;
  2.         server_name 127.0.0.1;
  3.         allow 127.0.0.1;
  4.         location /nginx_status {
  5.                 stub_status on;
  6.                 access_log off;
  7.         }
复制代码
21.png
使用道具 举报 回复 支持 反对
发表于 2022-10-25 15:45:18 | 显示全部楼层
谢花郎 发表于 2022-10-25 14:55
404是提示不存在,您那边到/www/server/panel/vhost/nginx这个路径下
查看下phpfpm_status.conf文件内容是 ...

你好,这个路径/www/server/panel/vhost/nginx
的文件存在的,里面的东西也在。。。。一模一样的。。。
上传不了图片,我复制过来:
server {
    listen 80;
    server_name 127.0.0.1;
    allow 127.0.0.1;
    location /nginx_status {
        stub_status on;
        access_log off;
    }
    location /phpfpm_52_status {
        fastcgi_pass unix:/tmp/php-cgi-52.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
    location /phpfpm_53_status {
        fastcgi_pass unix:/tmp/php-cgi-53.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
    location /phpfpm_54_status {
        fastcgi_pass unix:/tmp/php-cgi-54.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
    location /phpfpm_55_status {
        fastcgi_pass unix:/tmp/php-cgi-55.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
    location /phpfpm_56_status {
        fastcgi_pass unix:/tmp/php-cgi-56.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
    location /phpfpm_70_status {
        fastcgi_pass unix:/tmp/php-cgi-70.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
    location /phpfpm_71_status {
        fastcgi_pass unix:/tmp/php-cgi-71.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
    location /phpfpm_72_status {
        fastcgi_pass unix:/tmp/php-cgi-72.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
    location /phpfpm_73_status {
        fastcgi_pass unix:/tmp/php-cgi-73.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
    location /phpfpm_74_status {
        fastcgi_pass unix:/tmp/php-cgi-74.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
    location /phpfpm_75_status {
        fastcgi_pass unix:/tmp/php-cgi-75.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
    location /phpfpm_80_status {
        fastcgi_pass unix:/tmp/php-cgi-80.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
    location /phpfpm_81_status {
        fastcgi_pass unix:/tmp/php-cgi-81.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
    }
}
使用道具 举报 回复 支持 反对
发表于 2022-10-25 17:01:36 | 显示全部楼层
ycy0515 发表于 2022-10-25 15:45
你好,这个路径/www/server/panel/vhost/nginx
的文件存在的,里面的东西也在。。。。一模一样的。。。
...

您好,建议重新开帖咨询,使用命令查看下返回的值
  1. curl http://127.0.0.1/nginx_status
复制代码
使用道具 举报 回复 支持 反对
发表于 2023-7-19 15:30:36 | 显示全部楼层
遇到楼上一样的问题,这个原因是127.0.0.1 这个IP被占用了。建议官方更换其他IP,因为127.0.0.1这个太常用了
使用道具 举报 回复 支持 反对
发表于 2024-10-22 11:59:44 | 显示全部楼层
遇到了同样的问题,此配置文件phpfpm_status.conf使用的127.0.0.1:80,自行配置的网站中也存在此配置,导致冲突
使用道具 举报 回复 支持 反对
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

普通问题处理

论坛响应时间:72小时

问题处理方式:排队(仅解答)

工作时间:白班:9:00 - 18:00

紧急运维服务

响应时间:3分钟

问题处理方式:宝塔专家1对1服务

工作时间:工作日:9:00 - 18:30

宝塔专业团队为您解决服务器疑难问题

立即付费处理

工作时间:09:00至24:00

快速回复 返回顶部 返回列表