| 
 I am running Condor 6.8.3 under windows NT.  When I
submit a condor.submit file from the command line via:                 Condor_submit
condor.submit the job owner is ‘me’ and the job runs fine. When I submit the same condor.submit file from a java
application:        
String[] condorCommand = { “condor_submit”,
"condor.submit"} ;       
 process = Runtime.getRuntime().exec( condorCommand, null, 
workingDir); the job is started as owner ‘system’ and I get
error: ERROR: No credential stored for SYSTEM@NT AUTHORITY       Correct this by
running:       condor_store_cred add However, I can’t run condor_store_cred add for SYSTEM
since I don’t know SYSTEM password. How do I get the job to be started as owner ‘me’
instead? Thanks, Diane Harding  |