[Ruby] God : The server is not available (or you do not have permissions to access it)
The god configuration file had incorrect syntax, which prevented the god process from starting up.
Since god wasn’t running, naturally everything resulted in the following error message indicating the process wasn’t running:
The server is not available (or you do not have permissions to access it)
The cause was that I had written the following to load god configuration files in batch, but this didn’t work:
■ /etc/god/master.conf
load "/srv/myapp/current/config/god/*.god"
↓ (Fixed)
load "/srv/myapp/current/config/god/resque.god"
Currently, I only need to monitor the Resque process, so I made this correction.
That’s all from the Gemba.