new galaxy installation stucked on "Adding service gunicorn"

Hi everyone,
I’m trying to install the latest galaxy version on a remote VM with Linux ubuntu 5.15.0-124-generic.
The installation seems fine, but after relaunching galaxy I get stuck on the message “Adding service gunicorn”. I tried to change to unicornherder but I got the same issue. I’m following instructions from this page: Get Galaxy - Galaxy Community Hub

These are the settings that I’m using in the galaxy.yml file:

gunicorn:
    enable: true
    bind: VM_IP:8080

I also tried to specify galaxy and config file directories but it didn’t solve the issue.
What am I doing wrong here?
Thank you for the help

Hi @Andrea_Furlani

I’ve cross posted your question to our Admin chat to bring in some expert help. They may reply here or there, and please feel free to join the chat: You're invited to talk on Matrix

XRef

Can you include more context from the startup output? It would help to determine exactly where it’s getting stuck within the full flow of the startup process.

Under the bind option you probably want either bind: 127.0.0.1:8080 if you are going to serve via a proxy server (e.g. nginx) or bind: 0.0.0.0:8080 to serve via all interfaces. bind: IP:8080 should work, but is typically not necessary to actually be specific (and then can cause problems if you change the VM’s IP).

Thank you @nate , changing bind to 0.0.0.0:8080 solved the problem

1 Like