与php的主管一起收到了SIGCLD,表明孩子已退出

问题描述 投票:1回答:3

尝试启动主管并遇到许多此类错误

2011-06-08 23:35:45,833 CRIT Supervisor running as root (no user in config file)
2011-06-08 23:35:45,851 INFO supervisord started with pid 19617
2011-06-08 23:35:45,852 INFO spawned: 'gearman-worker' with pid 19620
2011-06-08 23:35:45,899 INFO exited: gearman-worker (exit status 1; not expected)
2011-06-08 23:35:45,900 INFO received SIGCLD indicating a child quit
2011-06-08 23:35:46,902 INFO spawned: 'gearman-worker' with pid 19621
2011-06-08 23:35:46,943 INFO exited: gearman-worker (exit status 1; not expected)
2011-06-08 23:35:46,944 INFO received SIGCLD indicating a child quit
2011-06-08 23:35:48,945 INFO spawned: 'gearman-worker' with pid 19622
2011-06-08 23:35:48,996 INFO exited: gearman-worker (exit status 1; not expected)
2011-06-08 23:35:48,996 INFO received SIGCLD indicating a child quit
2011-06-08 23:35:51,998 INFO spawned: 'gearman-worker' with pid 19623
2011-06-08 23:35:52,041 INFO exited: gearman-worker (exit status 1; not expected)
2011-06-08 23:35:52,041 INFO received SIGCLD indicating a child quit
2011-06-08 23:35:53,041 INFO gave up: gearman-worker entered FATAL state, too many start retries too quickly
2011-06-08 23:35:57,671 CRIT received SIGINT indicating exit request

我的主管会议:

[supervisord]

[program:gearman-worker]
user=nobody
command=/usr/bin/php -e index.php -a 'qworker'
process_name=%(program_name)s_%(process_num)02d
numprocs=10
directory=/home/test/public_html/
stdout_logfile=/var/log/supervisor/supervisord.log
autostart=true
autorestart=true

任何人有任何想法吗?

gearman supervisord
3个回答
1
投票

您的PHP程序正在退出,这可能与主管无关。

  1. 尝试先在命令行上运行工作程序,看看是否可行
  2. 检查主管为该过程创建的stderr日志以寻找线索

0
投票

/ home / test / public_html /是否已经创建?

su-没有人,运行脚本来测试它是否可以作为无人工作


0
投票

检查本地的apache和mysql服务器是否正在运行,然后停止它。

1.sudo service apache2 stop
2.sudo service mysql stop

现在尝试在Ubuntu上唤醒。如果您的Windows系统具有XAMPP,只需从XAMPP控制面板中停止服务即可。

© www.soinside.com 2019 - 2024. All rights reserved.