Skip to content

Instantly share code, notes, and snippets.

@mattf
Created December 20, 2011 12:42
Show Gist options
  • Save mattf/1501447 to your computer and use it in GitHub Desktop.
Save mattf/1501447 to your computer and use it in GitHub Desktop.
Cumin quick start
How do you install, setup and run Cumin on a head node -
0) yum install qpidd cumin sesame
1) echo cumin | sudo -u qpidd /usr/sbin/saslpasswd2 -f /var/lib/qpidd/qpidd.sasldb -u QPID cumin
2) sed -i 's,# brokers:.*,brokers: cumin/cumin@localhost:5672,' /etc/cumin/cumin.conf
3) (probably) sed -i 's/# host:.*/host: 0.0.0.0/' /etc/cumin/cumin.conf
4) (hopefully) sed -i 's/# persona:.*/persona: grid/' /etc/cumin/cumin.conf
5) service qpidd start
6) service sesame start (or systemctl start sesame.service)
7) service cumin start (follow instructions, return here when done)
- cumin-database install
- cumin-database start
- service cumin start (or systemctl start cumin.service)
8) cumin-admin add-user guest guest (or whatever you like)
Note: Maybe on node running condor_collector: echo "COLLECTOR_UPDATE_INTERVAL = 60" >> /etc/condor/config.d/40QMF.config
How do you install, setup and run execute nodes to connect to Cumin -
0) yum install condor-qmf sesame
1) echo "QMF_BROKER_HOST = <HOSTNAME OF HEAD NODE>" > /etc/condor/config.d/40QMF.config
2) (likely) echo "ENABLE_RUNTIME_CONFIG = TRUE" >> /etc/condor/config.d/40QMF.config
3) sed -i 's/host=.*/host=<HOSTNAME OF HEAD NODE>/' /etc/sesame/sesame.conf
4) service sesame start (or systemctl start sesame.service)
5) service condor restart (or systemctl restart condor.service)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment