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

Re: [Condor-users] New to Condor, Need to RUN MPI



> I looked up the CollectorLog and found the following entries. Those ips are of the computenodes
> 
> 2/3 17:28:27 DaemonCore: PERMISSION DENIED to unknown user from host <10.1.255.251:59011> for command 0 (UPDATE_STARTD_AD), access level ADVERTISE_STARTD

this is the key problem.

you need to tell condor which IP addresses are allowed to do certain
operations.  look in the condor_config file for the string "HOSTALLOW"
and set them to something like this:

HOSTALLOW_READ = 10.1.*
HOSTALLOW_WRITE = 10.1.*
HOSTALLOW_ADMINISTRATOR = $(CONDOR_HOST)

this will allow machines in those networks to join your pool, run and/or submit
jobs depending on which daemons they are running.

it also makes it so only the central manager can issue administrative commands.
you may wish to make the central manager a different machine from your main
submit point if you do not trust users on the submit machine not to say, turn
off condor.

i hope that helps!


cheers,
-zach