I have installed Aegir on my Ubuntu 14.04 (inside a Docker container) following the manual installation guide.
But when I execute sudo /etc/init.d/hosting-queued start, it replies me Starting Aegir queue daemon... ok but nothing happens, the daemon is not launched (I don't have it in the process list).
If I execute sudo /etc/init.d/hosting-queued status, it shows: Aegir queue daemon is not running.
I've checked inside that script and saw that it runs su - aegir -- /usr/local/bin/drush --quiet @hostmaster hosting-queued, so I tried to execute drush @hostmaster hosting-queued as aegir user and this gave me that:
The drush command 'hosting-queued' could not be found. Run `drush cache-clear drush` to clear the commandfile cache if you have installed new extensions. [error]
And even if I run drush cache-clear drush, I still have this message...
Have I missed something ?
I have opened a stackoverflow question here.
Comments
Comment #2
helmo commentedhttp://drupal.stackexchange.com/ might have been a slightly better place then the general stackoverflow site....
As I mentioned in IRC, please try starting
drush --debug @hostmaster hosting-queued. Without the '--quiet' option and with '--verbose' or '--debug'. That should give some more info on what is going on.Comment #3
netangel commentedHere is the result:
But as said here, I've found a strange workaround: I had first to execute
drush @hostmaster pm-enable -y hosting_queued.It's weird because I've correctly installed hostmaster with
drush hostmaster-install --aegir_db_host=$DB_HOST --aegir_db_port=$DB_PORT --aegir_db_user=$DB_ROOT_USER --aegir_db_pass=$DB_ROOT_PASSWORD --aegir_host=$AEGIR_HOST $AEGIR_URL --client_email=$AEGIR_ADMIN_EMAIL -y(all the environment variables are filled when this command is executed).Comment #4
helmo commentedReading http://stackoverflow.com/questions/33168457/aegir-hosting-queued-service... it turns out the hosting-queued module war not enabled.