I want my local Galaxy instance allow all users(anonymous and registered) free to browse around and see what’s available without registering, but only the registers can upload data or run jobs.
According to bgruening suggestion, I could set limits in my job_conf.xml file and configure resources for users that are not registered. Below is the configuration of my job_conf.xml file, but it doesn’t work. Could anyone help me see what went wrong?Thank you.
<?xml version="1.0"?>
<!-- A sample job config that explicitly configures job running the way it is
configured by default (if there is no explicit config). -->
<job_conf>
<plugins>
<plugin id="local" type="runner" load="galaxy.jobs.runners.local:LocalJobRunner" workers="4"/>
</plugins>
<destinations>
<destination id="local" runner="local"/>
</destinations>
<limits>
<limit type="registered_user_concurrent_jobs">2</limit>
<limit type="anonymous_user_concurrent_jobs" id="local">0</limit>
</limits>
</job_conf>