Hi, I am trying to submit a simple job (shell script) but it
fails here is the log msgs and the Job specifications. Please let me know what might be the problem. Thanks, Senthil Starter Log ************** 9/20 17:34:04 File transfer completed successfully. 9/20 17:34:05 Starting a VANILLA universe job with ID: 47.0 9/20 17:34:05 IWD: /u/condor/execute/dir_9883 9/20 17:34:05 Output file:
/u/condor/execute/dir_9883/sh_loop1.out 9/20 17:34:05 Error file:
/u/condor/execute/dir_9883/sh_loop1.err 9/20 17:34:05 About to exec
/u/condor/execute/dir_9883/condor_exec.exe 30 9/20 17:34:05 Create_Process: child failed with errno 2 (No
such file or directory) before exec() 9/20 17:34:05 ERROR
"Create_Process(/u/condor/execute/dir_9883/condor_exec.exe,30, ...)
failed" at line 390 in file os_proc.C 9/20 17:34:05 ShutdownFast all jobs. ShadowLog ************* 9/20 17:34:04 Initializing a VANILLA shadow for job 47.0 9/20 17:34:04 (47.0) (9882): Request to run on <xxx.xx.xx.xx:34930>
was ACCEPTED 9/20 17:34:05 (47.0) (9882): Job 47.0 going into Hold state
(code 6,2): Error from starter on vm2@xxxxxxxxxxxxxxxxx: Failed to execute
'/u/condor/execute/dir_9883/condor_exec.exe' with arguments 30: No such file or
directory 9/20 17:34:05 (47.0) (9882): **** condor_shadow
(condor_SHADOW) EXITING WITH STATUS 112 Job Specification ******************** universe = vanilla executable = sh_loop.sh Arguments = 30 output = sh_loop1.out error = sh_loop1.err log = sh_loop1.log should_transfer_files = YES #when_to_transfer_output = ON_EXIT WhenToTransferOutput = ON_EXIT queue sh_loop.sh ************ #!/bin/csh set i = 1 while ($i <= $1) echo -n $i " " sleep 1 @ i = $i + 1 end echo "" echo " |