6-2-stable: Incorrect message to start sidekiq
Created by: animedbz16
https://github.com/gitlabhq/gitlabhq/blob/6-2-stable/lib/tasks/gitlab/check.rake#L651
If sidekiq is not started the following messages is listed from the gitlab:check command:
Checking Sidekiq ...
Running? ... no Try fixing it: sudo -u git -H bundle exec rake sidekiq:start RAILS_ENV=production For more information see: doc/install/installation.md in section "Install Init Script" see log/sidekiq.log for possible errors Please fix the error above and rerun the checks.
Checking Sidekiq ... Finished
After searching around for a bit, it seems that sidekiq should be started by executing the ./script/background_jobs start
RAILS_ENV=production script/background_jobs start
Doing this and re-running the check completed successfully.