bgruening / docker-galaxy

:whale::bar_chart::books: Docker Images tracking the stable Galaxy releases.
http://bgruening.github.io/docker-galaxy
MIT License
226 stars 134 forks source link

Galaxy postgresql password #543

Closed likku3 closed 4 years ago

likku3 commented 4 years ago

I am trying to separate the Postgresql from docker image and want to use the AWS RDS (postgresql) .In this process I am taking the pgdump from present database and trying to dump in my RDS. Here I see the default login password for galaxy db is galaxy which doesn't meet AWS RDS password constraint ( 8 characters) .Please suggest the files in which I have to make changes so that my galaxy can connect to my POSTGRESQL (RDS).

rhpvorderman commented 4 years ago

The easiest way is to use the environment to set the galaxy connection

GALAXY_CONFIG_DATABASE_CONNECTION="postgresql://db/galaxydb?client_encoding=utf8"

For example. I believe you can also set passwords etc in such a connection string.

likku3 commented 4 years ago

The easiest way is to use the environment to set the galaxy connection

GALAXY_CONFIG_DATABASE_CONNECTION="postgresql://db/galaxydb?client_encoding=utf8"

For example. I believe you can also set passwords etc in such a connection string.

Thank you . I'll give a try and i'll post my findings