-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
Master on AIX 5.3; slave on Windows 2008(R2)
When running a Maven2 job on a slave instance, I get the following message (complete stack trace attached): "java.lang.ClassNotFoundException: Classloading from system classloader disabled". This happens with the first job after the slave instance is started (it's running as a Windows service). After that, I get a "java.lang.NoClassDefFoundError: Could not initialize class hudson.maven.MavenModuleSetBuild" error.
If I create a freestyle job, and include the maven command as a batch command to run on the slave, it works fine. The Maven2 job appears to locate Maven on the slave machine, but it apparently can't find the maven-plugin (probably due to the classloading error).
- is duplicated by
-
JENKINS-11088 unable to check out with SVN on a jenkins slave
-
- Resolved
-
- links to
[JENKINS-10238] Jenkins slave throws "Classloading from system classloader disabled" exception
Affects Version/s | New: current [ 10162 ] |
Assignee | New: Kohsuke Kawaguchi [ kohsuke ] |
Link |
New:
This issue is duplicated by |
Encountered the same issue after upgrading to 1.427 (from 1.421).
The first job an each node fails with the same stacktrace already attached to this issue.
All later starts of a job end with
hudson.util.IOException2: remote file operation failed: /.../jenkins/workspace/$ourProject at hudson.remoting.Channel@40d39e96:NodeOne
at hudson.FilePath.act(FilePath.java:754)
at hudson.FilePath.act(FilePath.java:740)
at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:731)
at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:676)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1193)
at hudson.model.AbstractBuild$AbstractRunner.checkout(AbstractBuild.java:555)
at hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.java:443)
at hudson.model.Run.run(Run.java:1376)
at hudson.maven.MavenModuleSetBuild.run(MavenModuleSetBuild.java:479)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:230)
Caused by: java.io.IOException: Remote call on NodeOne failed
at hudson.remoting.Channel.call(Channel.java:677)
at hudson.FilePath.act(FilePath.java:747)
... 10 more
Caused by: java.lang.NoClassDefFoundError
at hudson.scm.SubversionWorkspaceSelector.syncWorkspaceFormatFromMaster(SubversionWorkspaceSelector.java:85)
at hudson.scm.SubversionSCM.createSvnClientManager(SubversionSCM.java:808)
at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:751)
at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:738)
at hudson.FilePath$FileCallableWrapper.call(FilePath.java:1994)
at hudson.remoting.UserRequest.perform(UserRequest.java:118)
at hudson.remoting.UserRequest.perform(UserRequest.java:48)
at hudson.remoting.Request$2.run(Request.java:287)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:417)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:269)
at java.util.concurrent.FutureTask.run(FutureTask.java:123)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:651)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:676)
at hudson.remoting.Engine$1$1.run(Engine.java:60)
at java.lang.Thread.run(Thread.java:595)
After downgrade back to 1.421 all works fine again :-/