Using God to monitor Unicorn - Start exited with non-zero code = 1 Using God to monitor Unicorn - Start exited with non-zero code = 1 ruby ruby

Using God to monitor Unicorn - Start exited with non-zero code = 1


I haven't used unicorn as an app server, but I've used god for monitoring before.

If I remember rightly when you start god and give your config file, it automatically starts whatever you've told it to watch. Unicorn is probably already running, which is why it's throwing the error.

Check this by running god status once you've started god. If that's not the case you can check on the command line what the comand's exit status is:

/usr/local/bin/unicorn_rails -c /home/my-linux-user/my-rails-app/config/unicorn.rb -E production -D;echo $?;

that echo will print the exit status of the last command. If it's zero, the last command reported no errors. Try starting unicorn twice in a row, I expect the second time it'll return 1, because it's already running.

EDIT:

including the actual solution from comments, as this seems to be a popular response:

You can set an explicit user and group if your process requires to be run as a specific user.

God.watch do |w|  w.uid = 'root'  w.gid = 'root'  # remainder of configend


My problem was that I never bundled as root. Here is what I did:

sudo bashcd RAILS_ROOTbundle

You get a warning telling you to never do this:

Don't run Bundler as root. Bundler can ask for sudo if it is needed, and installing your bundle as root will break this application for all non-root users on this machine.

But it was the only way I could get resque or unicorn to run with god. This was on an ec2 instance if that helps anyone.


Add the log option has helped me greatly in debugging.

God.watch do |w|  w.log = "#{RAILS_ROOT}/log/god.log"  # remainder of configend

In the end, my bug turned out to be the start_script in God was executed in development environment. I fixed this by appending the RAILS_ENV to the start script.

start_script = "RAILS_ENV=#{ENV['RACK_ENV']} bundle exec sidekiq -P #{pid_file} -C #{config_file} -L #{log_file} -d"