Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[geclipse-dev] JobStatus Error

Hello

Today I wanted to test my code again, which I wrote a few month ago. But unfortunately I get the following JobStatus error printed out:

WAITING: test2 LBProxy is enabled
Unable to query LB and LBProxy
edg_wll_QueryEvents[Proxy]
Exit code: 1413
LB[Proxy] Error: GSSAPI Error
(receving HTTP request: GSS Major Status: General failure
 (GSS Minor Status Error Chain:

unwrap.c:273: gss_unwrap: internal problem with SSL BIO: SSL_read rc=-1
OpenSSL Error: s3_pkt.c:286: in library: SSL routines, function SSL3_GET_RECORD: wrong version number))


The source code that prints it is:

for (IGridJob job : jobs) {
	if (job.getJobStatus().canChange()) {
		job.updateJobStatus();
		System.out.println(job.getJobStatus().getName()
				+ ": " + job.getName() + " "
				+ job.getJobStatus().getReason());	
		//System.out.println(job.getJobStatus().getName());
	} else {
		finished++;
	}
}



I submit the jobs to:

VomsVoCreator crea = new VomsVoCreator();
crea.setVoHost("voms.ct.infn.it");
crea.setVoPort(15001);
crea.setVoHostDN("/C=IT/O=INFN/OU=Host/L=Catania/CN=voms.ct.infn.it");
crea.setVoInfoService(URI.create("ldap://glite-rb.ct.infn.it:2170";));
crea.setVoName("gilda");

and I use that code for submitting the jobs which seems to work fine:

for (IGridJobService js : jss) {
		if (js.canSubmit(jsdl)) {				
			try {
				id = js.submitJob(jsdl, new NullProgressMonitor());
				job = GridJob.createJobStructure(jobDir, (GridJobID) id,
						js, jsdl, jsdl.getName());
				System.out.println("Job "+job.getName() +" Submitted at "+job.getSubmissionTime()+" to "+js.getName());
				break;
			} catch (ProblemException e) {
				e.printStackTrace();
			}

		}
	}



I dont get any faults when I submit the jobs but when I receive the jobstatus it always says WAITING. Does Gilda may have a problem or have they changed something?

thx pod


-- 
Psssst! Schon vom neuen GMX MultiMessenger gehört? Der kann`s mit allen: http://www.gmx.net/de/go/multimessenger01


Back to the top