Question: 'Problem determining Galaxy's configuration'
2
sf_17 • 30 wrote:
I'm trying to install galaxy for local use. I have cloned the github repo and setup a conda environment running python 2.7. The first time I run
sh run.sh
galaxy starts up no problem and I can access it at localhost:8080
However, every time I try to start up after the first time I get the following error message:
Exception: Problem determining Galaxy's configuration - the specified configuration file cannot be found.
I tried copying over the config/galaxi.ini.sample file to config/galaxi.ini both before and after the first time I run run.sh. In both cases, galaxy starts up the first time I run it then gives me the same error message after.
Has anyone run into this issue before?
Thank you
ADD COMMENT
• link
•
modified 15 months ago
by
danielsauceda • 60
•
written
15 months ago by
sf_17 • 30
Umm. 2 things
Ah...that may be it. I haven't modified anything in the copied over galaxi.ini file (except for adding myself as an admin user and uncommenting that line). What should I be changing in galaxi.ini to play nice with my conda environment?
Here's more of the log
I have not used conda myself but lets try some stuff.
First read this about conda. This would make sense why it works the first time and not after. Because it means that a .venv is getting created and breaking when conda is involved so
--skip-venv
flag like it says.See what happens
Ah that's a great find, thank you for the link. It looks like if I activate the conda environment before running sh run.sh, it should automatically run it with --skip-venv raised.
One thing I didn't think much about was that I cloned the galaxy repo into my Google Drive folder (named $HOME/Google Drive/). I didn't think twice about it, was just trying to have a cloud backup. But in the past I've had a few issues putting things in the google drive folder (sometimes it's as dumb as the default google drive directory name having a space in it). I moved it out of my drive directory into $HOME and it looks like it's starting up consistently now....super frustrating
Thank you for your help! This link to the admin doc page is really helpful