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

Re: [Condor-users] problem starting condor in init.d



On Wed, Aug 03, 2005 at 02:57:35PM -0400, Ian Chesal wrote:
> > Hi All,
> > 
> > I am trying to find where the path to condor_config.local is set when
> > using init.d  to start condor. I don't have a local.localhost
> directory
> > and I cannot find any file where this is specified. see below:
> > 
> > #/etc/init.d/condor start
> > Starting up Condor
> > ERROR: Can't read config file
> > /opt/condor-6.7.9/local.localhost/condor_config.local
> 
> The location of the local configuration file is specified in your
> condor_config file using the LOCAL_CONFIG_FILE setting.
> 
> You can remove the need for a local configuration file by setting:
> 
> 	REQUIRE_LOCAL_CONFIG_FILE = False
> 

Or just comment out the setting for LOCAL_CONFIG_FILE. The idea
behine REQUIRE_LOCAL_CONFIG_FILE is that you might have a global
config file in NFS, and say something like

LOCAL_CONFIG_FILE = /some/path/to/nfs/$(HOSTNAME).local
REQUIRE_LOCAL_CONFIG_FILE = FALSE

that way, you don't have to create a local config file for every machine in
your pool, but if you want to it's automatically picked up. 

-Erik