Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [HTCondor-users] Jobs do not execute, they sit idle in the queue indefinitely
- Date: Mon, 20 May 2013 20:25:10 +0100
- From: Brian Candler <B.Candler@xxxxxxxxx>
- Subject: Re: [HTCondor-users] Jobs do not execute, they sit idle in the queue indefinitely
On Mon, May 20, 2013 at 03:11:34PM -0400, Dan Shea wrote:
> Currently, I am attempting to limit things to the local network,
> perhaps this is not the correct way to wildcard a subnet?
> ALLOW_WRITE = 10.11.114.*
That's fine.
> 127.0.0.1 node00 localhost localhost.localdomain
> 10.11.114.220 node00
> Thanks Brian, let me correct the /etc/hosts entries and see if it fixes
> things a bit.
Aha :-)
It may work as you have it, but you should *really* use FQDNs, e.g.
10.11.114.220 node00.mydomain.com
The reason is that things like UID_DOMAIN don't work without it. e.g. if you
want jobs to run as the same uid across the cluster, then you want
UID_DOMAIN = mydomain.com
and every hostname *must* be a subdomain of UID_DOMAIN.
Regards,
Brian.