ce-condor can be installed as follow. This include manual steps.
$ su - root # ###set public interface # #rocks set host interface ip ce-0-0 iface=eth1 ip=1.2.3.5 #rocks set host interface name ce-0-0 iface=eth1 name=rocks-ce #rocks set host interface subnet ce-0-0 eth1 public #rocks set host attr ce-0-0 primary_net public #rocks add host route ce-0-0 0.0.0.0 1.2.3.1 netmask=0.0.0.0 #rocks add host attr ce-0-0 OSG_CE value="condor" #rocks add host attr ce-0-0 OSG_Condor_Daemons value="MASTER, SCHEDD" # ###Sample of customizing/changing attribute # #rocks set host attr ce-0-0 OSG_SRMsupportedProtocolList value="gsiftp://rocks-ce.mypublic.edu:2811" # ###Set hostcert/hostkey(auto) httpcert/httpkey('manual') # #rocks add host sec_attr ce-0-0 attr=hostcert value="/path/to/cert/hostcert.pem" crypted=true #rocks add host sec_attr ce-0-0 attr=hostkey value="/path/to/certkey/hostkey.pem" crypted=true # ###Set nsf shared dir where httpcert,httpkey are stored ### in this example assuming stored at ### /my/nfs/path/for/certs/ce-0-0/httpcert.pem ### /my/nfs/path/for/certs/ce-0-0/httpkey.pem #rocks set host attr ce-0-0 OSG_StoredCertsDir value="/my/nfs/path/for/certs" # ### reinstall # #shoot-node ce-0-0 # ### post install # ###Manual config #edit for your site /etc/osg/config.d/30-gip.ini #edit for your site /etc/osg/config.d/40-siteinfo.ini #rocks run host ce-0-0 command='service condor start' #rocks run host ce-0-0 command='configure-osg -v' #rocks run host ce-0-0 command='configure-osg -c' #rocks run host ce-0-0 command='chkconfig condor on' #rocks run host ce-0-0 command='chkconfig globus-gatekeeper on' #rocks run host ce-0-0 command='chkconfig fetch-crl-cron on' #rocks run host ce-0-0 command='chkconfig fetch-crl-boot on' #services for ce-condor #rocks run host ce-0-0 command='service globus-gatekeeper start' |