GlideinWMS
The Glidein-based Workflow Management System
GlideinWMS
FAQ
- How to setup GSI in glideinWMS
Refer to GSI setup reference guide
- How to add global configuration parameter to glidein factory entries
To add a configuration parameter that effect all the factory entries, add an <attr ...> </attr> tag to /glidein/attrs section
- How to add local configuration parameter to glidein factory entries
To add a configuration parameter to a specific factory entry, add an <attr ...> </attr> tag to /glidein/entries/entry/attrs section
- How to configure glideinWMS to retrieve core files produced by user jobs
In the Factory configuration in the <entry> tag, the rsl attribute
should contain condor_submit=('+Coresize' 'Unlimited').
Example (all on one line):
rsl="(condor_submit=('+Coresize' 'Unlimited'))(queue=default)(jobtype=single)"
In the condor_submit file of the user job add:
+coresize = unlimited
NOTE: The coresize for the actual user job will be set to the available
disk space, not unlimited. Also, you can make this change to global
parameter or local parameter.
- How to set a custom port for HTTPD on machines with SELinux enabled
SELinux, when enabled, restricts the ports that a daemon can open or use. This interferes with custom ports on the web server for
glideinWMS. To enable the custom port for the web server the folowing command must be run as a privileged user. The following
command uses port 8319 as the custom port. Change this to the desired custom port.
semanage port -a -t http_port_t -p tcp 8319