gums can be installed as follow.
$ su - root # ###set public interface # #rocks set host interface ip gums-0-0 iface=eth1 ip=1.2.3.6 #rocks set host interface name gums-0-0 iface=eth1 name=rocks-gums #rocks set host interface subnet gums-0-0 eth1 public #rocks set host attr gums-0-0 primary_net public #rocks add host route gums-0-0 0.0.0.0 1.2.3.1 netmask=0.0.0.0 #rocks add host attr gums-0-0 OSG_GUMS value=true # # ###sample of customizing/changing attribute #rocks set host attr gums-0-0 OSG_GUMSBackupDir value=/home/myusers/mygumsbackups #rocks set host attr gums-0-0 OSG_GUMSDNADMIN value="DN my grid" ###setting service certs (option 1 is preferred ) #option 1 # rocks add host sec_attr gums-0-0 attr=hostcert value="/path/to/cert/hostcert.pem" crypted=true # rocks add host sec_attr gums-0-0 attr=hostkey value="/path/to/certkey/hostkey.pem" crypted=true # rocks add host sec_attr gums-0-0 attr=httpcert value="/path/to/cert/httpcert.pem" crypted=true # rocks add host sec_attr gums-0-0 attr=httpkey value="/path/to/certkey/httpkey.pem" crypted=true #option 2 #rocks set host atrr gums-0-0 OSG_StoredCertsDir value="/my/nfs/path/for/certs" # # reinstall # #shoot-node gums-0-0 # # post install # #for services gums #https://twiki.grid.iu.edu/bin/view/Documentation/Release3/InstallGums # #if upgrading from pacman in OSG_GUMSBackupDir # use backup names gum.config_pacman and gums_1_3.sql_pacman # rocks run host gums-0-0 command='/root/ConfigureGumsUpgradeFromPacman.sh' # #if upgrading from rpm in OSG_GUMSBackupDir # use backup names gum.config_rpm and gums_1_3.sql_rpm # rocks run host gums-0-0 command='/root/ConfigureGumsUpgradeFromRPM.sh' # #if fresh install (edit to set gums password) # rocks run host gums-0-0 command='/root/ConfigureGumsFreshInstall.sh' # #rocks run host gums-0-0 command='fetch-crl' #rocks run host gums-0-0 command='service fetch-crl-boot start' #rocks run host gums-0-0 command='service fetch-crl-cron start' #rocks run host gums-0-0 command='service tomcat6 start' #rocks run host gums-0-0 command='chkconfig fetch-crl-cron on' #rocks run host gums-0-0 command='chkconfig fetch-crl-boot on' #rocks run host gums-0-0 command='chkconfig tomcat6 on' #rocks run host gums-0-0 command='chkconfig mysqld on' |