Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Condor-users] adding second shedd for remote submission ?
- Date: Thu, 5 Apr 2012 10:24:31 -0700
- From: Asoka De Silva <desilva@xxxxxxx>
- Subject: [Condor-users] adding second shedd for remote submission ?
Hi,
I am running condor 7.6.6-1 (OS : SL5.7) and have some difficulty configuring it for a new requirement; I need to be able to do 2 types of job submissions:
- submissions to grid CEs (this works for a long time now)
- and the new requirement - submission to a remote schedd (ie with condor_submit -remote …)
It seems I need to define a new (second ?) schedd for "condor_submit -remote" to work. Towards this end, I've tried
-------
SCHEDD2 = $(SCHEDD)
SCHEDD2_ARGS = -f -local-name Q2
SCHEDD2_LOG = $(LOG)/ScheddLog.2
SCHEDD2_SPOOL = $(SPOOL)/2
SCHEDD.Q2.MACHINE = condor.heprc.uvic.ca
SCHEDD.Q2.SCHEDD_NAME = Q2@xxxxxxxxxxxxxxxxxxxx
SCHEDD.Q2.SPOOL = $(SCHEDD2_SPOOL)
SCHEDD.Q2.SCHEDD_LOG = $(SCHEDD2_LOG)
SCHEDD.Q2.SCHEDD_ADDRESS_FILE = $(SCHEDD2_SPOOL)/.schedd_address
DAEMON_LIST = $(DAEMON_LIST), SCHEDD2
VALID_SPOOL_FILES = $(VALID_SPOOL_FILES), 2
-------
which does not work (but log file looks does not have errors); if I look at the .schedd_address file:
[root@lcgtest5 spool]# cat 2/.schedd_address
<206.12.1.60:24489>
$CondorVersion: 7.6.6 Jan 17 2012 BuildID: 401976 $
$CondorPlatform: x86_64_rhap_5 $
The IP there is that of my machine instead of the remote machine and also,
[apf@lcgtest5 ~]$ condor_submit -remote condor.heprc.uvic.ca ./test.jdl
ERROR: Can't find address of schedd condor.heprc.uvic.ca
Does anyone have any suggestions as to how I need to configure this second schedd ?
Thanks in advance for your help !
regards,
Asoka