[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[HTCondor-users] Parallel environment



Dear expert,
I have a cluster of two virtual machines. I changed these lines of the file /etc/condor/config.d/00debconf with:

###########################################
CONDOR_ADMIN = master@Master
CONDOR_HOST = Master
TRUST_UID_DOMAIN = true
ALLOW_WRITE = Master,Slave
###########################################

--This is my shell script :

###########################################
#!/bin/bash

echo "Ciao"
###########################################

--This is the htcondor script :

###########################################
executable = scriptshell.sh
universe = parallel
output=out.$(Process).txt
log=logscript.log
error=err.$(Process).txt
machine_count=2Â
requirements=(OpSys="LINUX")
queue 10
###########################################

The problem is all jobs of the queue remain idle and they are never executed. Because I want to run my job in parallel: what changes should I make to get the desired behavior ?

Thanks in advance