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

[Condor-users] Condor on Windows



Hello, friends!

 

I installed Personl Condor on Windows XP. First I tried to submit test.bat file which prints “Hello, Condor”. It works as expected, the correct result “Hello, Condor” is stored in the out file. But when I tried to submit executable test.exe I saw the following error in my test.log file:

 

000 (012.000.000) 08/24 14:52:19 Job submitted from host: <10.254.254.219:1067>

...

001 (012.000.000) 08/24 14:52:25 Job executing on host: <10.254.254.219:1068>

...

007 (012.000.000) 08/24 14:52:25 Shadow exception!

            Error from starter on vm1@comp12: Create_Process(C:\condor\execute\dir_3812\condor_exec.exe,, ...) failed

            0  -  Run Bytes Sent By Job

            2480  -  Run Bytes Received By Job

 

 

Test.exe is a simple Pascal program which prints the numbers from 1 to 100:

 

Test.pas

program test;

var i: integer;

begin

  for i:=1 to 100 do

    writeln(i);

end.

 

I compiled it and I saw that test.exe works normally alone.

 

The submit file looks like this:

Test.sub

universe = vanilla

executable = test.exe

error = test.err

log = test.log

should_transfer_files = YES

when_to_transfer_output = ON_EXIT

getenv = true

queue

 

Can anybody help me where I am wrong?

 

Thanks in advance !!!