su -s /bin/bash apache -c 'scl enable rh-php56 /var/www/MISP/app/Console/worker/start.sh'
gives me the following error.
I followed the install manuale
https://github.com/MISP/MISP/blob/f39eb469d33a3e7fd3d307fe7b05623e7494c12f/INSTALL/xINSTALL.centos7.txt
Stopping workers
There is no workers to stop ...
Creating workers
Starting worker ... Done
Creating workers
Starting worker ... Done
Creating workers
Starting worker ... Done
Creating workers
Starting worker ... Done
Creating the scheduler workers
Starting scheduler worker ..................... Fail
If you would like to report a bug, please fill the template bellow
| Questions | Answers
|---------------------------|--------------------
| Type of issue | Bug, Question, Feature Request, support...
| OS version (server) | CentOS,
| OS version (client) | 7
| PHP version | 5.6
| MISP version / git hash | 2.4.XX, hash of the commit
| Browser | If applicable
I am seeing the same error on my installation.
Expected behavior: Scheduler worker starts
Actual behavior: Scheduler worker does not start.
No specific error message in error.log, debug.log, resque-scheduler.log, resque-.log, resque-worker-error.log, resque-scheduler-error.log
I finally diagnosed it with:
diff --side-by-side --suppress-common-lines /var/www/MISP/INSTALL/setup/config.php /var/www/MISP/app/Plugin/CakeResque/Config/config.php
to see the differences between the running config and the default provide config. Somehow the CakeResque config file ended up with the value enabled as false instead of true.
'enabled' => true, | 'enabled' => false,
Changed the value to true then it worked like planned.
That simply means it wasn't installed correctly, moving the cakeresque
config file that has it set to true is part of the installation.
On Thu, Mar 9, 2017 at 4:46 PM, David André notifications@github.com
wrote:
I finally diagnosed it with:
diff --side-by-side --suppress-common-lines /var/www/MISP/INSTALL/setup/config.php
/var/www/MISP/app/Plugin/CakeResque/Config/config.phpto see the differences between the running config and the default provide
config. Somehow the CakeResque config file ended up with the value enabled
as false instead of true.
'enabled' => true, | 'enabled' => false,Changed the value to true then it worked like planned.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
https://github.com/MISP/MISP/issues/1911#issuecomment-285388768, or mute
the thread
https://github.com/notifications/unsubscribe-auth/ADf6wIUHXeMlvXrLht2tMfb9X1ihuOM9ks5rkB7lgaJpZM4L6nyZ
.
Most helpful comment
I finally diagnosed it with:
diff --side-by-side --suppress-common-lines /var/www/MISP/INSTALL/setup/config.php /var/www/MISP/app/Plugin/CakeResque/Config/config.php
to see the differences between the running config and the default provide config. Somehow the CakeResque config file ended up with the value enabled as false instead of true.
'enabled' => true, | 'enabled' => false,Changed the value to true then it worked like planned.