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

Re: [Condor-users] Jobs retuning blank output



 


On Wed, 05 Oct 2005 Chris Miles wrote :
>I have tried your method with no luck also.
>
>condor@thebeast:~/jobs/test> cat test.sub
>executable = /bin/hostname
>universe = vanilla
>
>TransferExecutable = false
>should_transfer_files = YES
>when_to_transfer_output = ON_EXIT
>
>requirements = (Arch == "X86_64") && (OpSys == "LINUX")
>
>output  = process_$(Process).out
>error = error.log
>log = master.log
>
>Queue 5
>
>After submitting and all jobs completing still the same. no output.
>
>condor@thebeast:~/jobs/test> ls -l
>total 16
>drwxr-xr-x  2 condor users  80 2005-10-05 00:26 error
>-rw-r--r--  1 condor users    0 2005-10-05 00:32 error.log
>drwxr-xr-x  2 condor users  80 2005-10-05 00:26 log
>-rw-r--r--  1 condor users 3020 2005-10-05 00:32 master.log
>drwxrwxrwx  2 condor users  328 2005-10-05 00:21 output
>-rw-r--r--  1 condor users    0 2005-10-05 00:32 process_0.out
>-rw-r--r--  1 condor users    0 2005-10-05 00:32 process_1.out
>-rw-r--r--  1 condor users    0 2005-10-05 00:32 process_2.out
>-rw-r--r--  1 condor users    0 2005-10-05 00:32 process_3.out
>-rw-r--r--  1 condor users    0 2005-10-05 00:32 process_4.out
>-rw-r--r--  1 condor users  274 2005-10-05 00:32 test.sub
>
>
>----- Original Message -----
> From: "Matt Hope" <matthew.hope@xxxxxxxxx>
>To: "Condor-Users Mail List" <condor-users@xxxxxxxxxxx>
>Sent: Tuesday, October 04, 2005 3:52 PM
>Subject: Re: [Condor-users] Jobs retuning blank output
>
>
> > On 10/4/05, Chris Miles <chrismiles@xxxxxxxxxxxxxxxx> wrote:
> >> The directories all exist and permissions are correct.
> >>
> >> I have been using it without the log entry anyway and its still
> >> the same problem so I dont think thats anything to do with it.
> >>
> >
> >>UserLog = "/home/condor/jobs/test/log/4.log"
> >>OutOrig = "output/4.out"
> >>Out = "_condor_stdout_40.4"
> >>ErrOrig = "error/4.err"
> >>Err = "_condor_stderr_40.4"
> >
> > suggest you try without the output and error directoris and see what





Hey chris,
If u want 2 excute your job on windows machine, you need to specify required .dlls as input files in your submit file.
Try out below lines in your submit file
/*****************************************************/
should_transfer_files = YES
when_to_transfer_output = ON_EXIT
transfer_input_files = <path of cygwin1.dll(c:\cygwin\bin\cygwin1.dll)>
TRANSFER_FILES = ALWAYS
/****************************************************/

I would suggest you to install cygwin on windows machine, if your submitters are windows n u want 2 execute on d same platform. If ur execute is Linux machine, such .dlls are not required. Linux is smart enough to know its environments and supporting files for executables. You neednt 2 pass it via submit file.

Cheers. Hope this time ur luck wil favor u

Regards
Neeraj!!!