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

Re: [Condor-users] PERMISSION DENIED Error



On Thu, Sep 08, 2005 at 06:06:54PM +0100, roy hill (IGER-WP) wrote:
> Now that we are running 6.7.10 if we leave NETWORK_INTERFACE=0.0.0.0 set then we recieve the following PERMISSION DENIED errors when we try to submit jobs:
>  
> 9/8 17:59:33 (pid:11319) DaemonCore: PERMISSION DENIED to unknown user from host <127.0.0.1:34882> for command 416 (NEGOTIATE)

right.  what you need to do is add 'localhost' or '127.0.0.1' to your HOSTALLOW
settings in the condor_config file.  of course, this depends on what you
already have there, and ideally you would want separate settings for your
central manager.  here's an example:

compute / submit nodes:

HOSTALLOW_READ = *
HOSTALLOW_WRITE = *.yourdomain.com 127.0.0.1
HOSTALLOW_ADMINISTRATOR = $(CONDOR_HOST)
HOSTALLOW_NEGOTIATOR = $(CONDOR_HOST)


central manager:

HOSTALLOW_READ = *
HOSTALLOW_WRITE = *.yourdomain.com 127.0.0.1
HOSTALLOW_ADMINISTRATOR = $(CONDOR_HOST) 127.0.0.1
HOSTALLOW_NEGOTIATOR = $(CONDOR_HOST) 127.0.0.1


if i can be of further, more specific help, please contact me off list and
include your condor_config file.


cheers,
-zach