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

[Condor-users] Unable to run jobs on OSX



I've set up a test environment to get the feel of condor. I have a Linux server
acting as a central manager, submit, and execute host and a Linux VM acting as
a execute host. Things worked great I'm able to submit jobs and get results. I
then installed condor on an xserve running OSX as an execute host. Whenever I
submit jobs they just stay in the queue in an idle state. What am I doing
wrong?

output from condor_status:

condor-dev-01 >condor_status

Name               OpSys      Arch   State     Activity LoadAv Mem   ActvtyTime

slot1@condor-dev-0 LINUX      X86_64 Unclaimed Idle     0.000   988  4+09:11:12
slot2@condor-dev-0 LINUX      X86_64 Unclaimed Idle     0.000   988  4+09:09:47
slot3@condor-dev-0 LINUX      X86_64 Unclaimed Idle     0.000   988  6+01:49:02
slot4@condor-dev-0 LINUX      X86_64 Unclaimed Idle     0.000   988  0+03:40:08
condor-test-01.oit LINUX      X86_64 Unclaimed Idle     0.000   498  0+02:55:04
slot1@quicktime-de OSX        PPC    Unclaimed Idle     0.170  1024  0+00:05:04
slot2@quicktime-de OSX        PPC    Unclaimed Idle     0.000  1024  0+00:05:05

                     Total Owner Claimed Unclaimed Matched Preempting Backfill

             PPC/OSX     2     0       0         2       0          0        0
        X86_64/LINUX     5     0       0         5       0          0        0

               Total     7     0       0         7       0          0        0

Output from condor_q:

condor-dev-01 >condor_q


-- Submitter: condor-dev-01.oit.duke.edu : <152.3.127.10:9620> :
condor-dev-01.oit.duke.edu
 ID      OWNER            SUBMITTED     RUN_TIME ST PRI SIZE CMD
 151.0   jmnewton        6/9  21:29   0+00:00:00 I  0   0.0  osx-test.sh

My submit file:

condor-dev-01 >cat osx.cmd
#########################
## Condor command file
#########################

universe                = vanilla
executable              = osx-test.sh
output          = osx-test.out
error           = osx-test.err
log             = osx-test.log
Requirements    = OpSys == "OSX"
should_transfer_files = YES
when_to_transfer_output = ON_EXIT
queue

test script:

condor-dev-01 >cat osx-test.sh
#!/bin/bash

echo "I hope this works" > osx-test.dat