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

[HTCondor-users] starting a fresh master requires me to edit UID_DOMAIN and CONDOR_HOST



Hi,

I downloaded the 7.9.2 i686 deb package (we use 32bit). Ran `sudo dpkg -i condor.deb` and it went fine. No prompt, nothing. Great.
I started out with just executing on the master itself.

In 7.9.2 there is already a vanilla condor_config.local but out of the box these settings don't work.
A simple hello world via condor_submit will be in idle forever. 

#CONDOR_HOST = $(FULL_HOSTNAME)
CONDOR_HOST = 10.0.2.15
CONDOR_ADMIN = root@mymaster
UID_DOMAIN = 10.0.2.15

so mymaster is 10.0.2.15. I have to manually specify this ip address rather than relying on $(FULL_HOSTNAME).
Otherwise, I get this

01/16/13 07:31:52 ---------- Started Negotiation Cycle ----------
01/16/13 07:31:52 Phase 1:  Obtaining ads from collector ...
01/16/13 07:31:52   Getting Scheduler, Submitter and Machine ads ...
01/16/13 07:31:52   Sorting 0 ads ...
01/16/13 07:31:52   Getting startd private ads ...
01/16/13 07:31:52 condor_write(): Socket closed when trying to write 108 bytes to collector at <127.0.1.1:9618>, fd is 8
01/16/13 07:31:52 Buf::write(): condor_write() failed
01/16/13 07:31:52 Couldn't fetch ads: communication error
01/16/13 07:31:52 Aborting negotiation cycle

I also have to specify `UID_DOMAIN` otherwise  I will get permission denied when the job returns to write to log file. I googled it and that's why I write it in the config.

Is this normal?
I thought it was my vanilla vm problem, but I installed a master on a physical ubuntu 12.04 LTS and still have the same issue, required me to edit these configurations.

Thanks
Kate