php - Laravel queue listener with supervisord results in core dump -
i'm using laravel 4 , queue implementation asynchronous tasks, , want use supervisord manage worker processes (basically artisan queue:listen
), i've done in past other frameworks.
when run supervisord manually, starts worker processes fine, when run service, worker processes die message:
2013-07-25 09:51:32,162 info spawned: 'myproject' pid 4106 2013-07-25 09:51:32,875 info exited: myproject (terminated sigsegv (core dumped); not expected)
there's no stdout or stderr output.
here's supervisord configuration workers (nothing fancy):
[program:myproject] command=php artisan queue:listen --queue=queue_name iron --env=staging directory=/home/myuser/myproject stdout_logfile=/var/log/supervisord/myproject.stdout stderr_logfile=/var/log/supervisord/myproject.stderr
the server running on centos 6.4 64 bit php 5.3.25 cpanel/whm (not choice, it's server idle , can't much).
any ideas on causing problem?
i had issue few months back, life of me can't accurately remember solution was, i'm reasonably sure issue needed @ least create log files write to, wouldn't create them itself.
Comments
Post a Comment