Error occurred during initialization of VM from a remote debian VM
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I know my question is related to some others, but the answers I found don't work for me. That's my problem: I have to run a JAVA script on a remote debian VM (from bash). When I run the program I get this:
Error occurred during initialization of VM
java.lang.Error: java.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
at java.lang.ClassLoader.initSystemClassLoader(ClassLoader.java:1469)
at java.lang.ClassLoader.getSystemClassLoader(ClassLoader.java:1436)
Caused by: java.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at java.lang.SystemClassLoaderAction.run(ClassLoader.java:2209)
at java.lang.SystemClassLoaderAction.run(ClassLoader.java:2195)
at java.security.AccessController.doPrivileged(Native Method)
at java.lang.ClassLoader.initSystemClassLoader(ClassLoader.java:1456)
at java.lang.ClassLoader.getSystemClassLoader(ClassLoader.java:1436)
As seen on stackoverflow, I already tried different display options, like
export DISPLAY=:0.0
setenv DISPLAY :0.0
unset DISPLAY
and some others, but unsuccessfully.
I suspect a GUI problem on my debian VM. An idea ?
java user-interface debian virtual-machine
add a comment |
I know my question is related to some others, but the answers I found don't work for me. That's my problem: I have to run a JAVA script on a remote debian VM (from bash). When I run the program I get this:
Error occurred during initialization of VM
java.lang.Error: java.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
at java.lang.ClassLoader.initSystemClassLoader(ClassLoader.java:1469)
at java.lang.ClassLoader.getSystemClassLoader(ClassLoader.java:1436)
Caused by: java.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at java.lang.SystemClassLoaderAction.run(ClassLoader.java:2209)
at java.lang.SystemClassLoaderAction.run(ClassLoader.java:2195)
at java.security.AccessController.doPrivileged(Native Method)
at java.lang.ClassLoader.initSystemClassLoader(ClassLoader.java:1456)
at java.lang.ClassLoader.getSystemClassLoader(ClassLoader.java:1436)
As seen on stackoverflow, I already tried different display options, like
export DISPLAY=:0.0
setenv DISPLAY :0.0
unset DISPLAY
and some others, but unsuccessfully.
I suspect a GUI problem on my debian VM. An idea ?
java user-interface debian virtual-machine
As you can see in the stacktracejava.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
there is a required class missing in the classpath
– Jens
Jan 3 at 13:15
ok but I can run this script without error on my computer. Why doesn't it work on the VM ? Do you mean that the class is missing on the VM ?
– Edeation Confluence
Jan 3 at 13:39
It is missing in the classpath on your VM. Maybe it is in the classpath on your local machine
– Jens
Jan 3 at 13:43
add a comment |
I know my question is related to some others, but the answers I found don't work for me. That's my problem: I have to run a JAVA script on a remote debian VM (from bash). When I run the program I get this:
Error occurred during initialization of VM
java.lang.Error: java.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
at java.lang.ClassLoader.initSystemClassLoader(ClassLoader.java:1469)
at java.lang.ClassLoader.getSystemClassLoader(ClassLoader.java:1436)
Caused by: java.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at java.lang.SystemClassLoaderAction.run(ClassLoader.java:2209)
at java.lang.SystemClassLoaderAction.run(ClassLoader.java:2195)
at java.security.AccessController.doPrivileged(Native Method)
at java.lang.ClassLoader.initSystemClassLoader(ClassLoader.java:1456)
at java.lang.ClassLoader.getSystemClassLoader(ClassLoader.java:1436)
As seen on stackoverflow, I already tried different display options, like
export DISPLAY=:0.0
setenv DISPLAY :0.0
unset DISPLAY
and some others, but unsuccessfully.
I suspect a GUI problem on my debian VM. An idea ?
java user-interface debian virtual-machine
I know my question is related to some others, but the answers I found don't work for me. That's my problem: I have to run a JAVA script on a remote debian VM (from bash). When I run the program I get this:
Error occurred during initialization of VM
java.lang.Error: java.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
at java.lang.ClassLoader.initSystemClassLoader(ClassLoader.java:1469)
at java.lang.ClassLoader.getSystemClassLoader(ClassLoader.java:1436)
Caused by: java.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at java.lang.SystemClassLoaderAction.run(ClassLoader.java:2209)
at java.lang.SystemClassLoaderAction.run(ClassLoader.java:2195)
at java.security.AccessController.doPrivileged(Native Method)
at java.lang.ClassLoader.initSystemClassLoader(ClassLoader.java:1456)
at java.lang.ClassLoader.getSystemClassLoader(ClassLoader.java:1436)
As seen on stackoverflow, I already tried different display options, like
export DISPLAY=:0.0
setenv DISPLAY :0.0
unset DISPLAY
and some others, but unsuccessfully.
I suspect a GUI problem on my debian VM. An idea ?
java user-interface debian virtual-machine
java user-interface debian virtual-machine
asked Jan 3 at 13:13
Edeation ConfluenceEdeation Confluence
92
92
As you can see in the stacktracejava.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
there is a required class missing in the classpath
– Jens
Jan 3 at 13:15
ok but I can run this script without error on my computer. Why doesn't it work on the VM ? Do you mean that the class is missing on the VM ?
– Edeation Confluence
Jan 3 at 13:39
It is missing in the classpath on your VM. Maybe it is in the classpath on your local machine
– Jens
Jan 3 at 13:43
add a comment |
As you can see in the stacktracejava.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
there is a required class missing in the classpath
– Jens
Jan 3 at 13:15
ok but I can run this script without error on my computer. Why doesn't it work on the VM ? Do you mean that the class is missing on the VM ?
– Edeation Confluence
Jan 3 at 13:39
It is missing in the classpath on your VM. Maybe it is in the classpath on your local machine
– Jens
Jan 3 at 13:43
As you can see in the stacktrace
java.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
there is a required class missing in the classpath– Jens
Jan 3 at 13:15
As you can see in the stacktrace
java.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
there is a required class missing in the classpath– Jens
Jan 3 at 13:15
ok but I can run this script without error on my computer. Why doesn't it work on the VM ? Do you mean that the class is missing on the VM ?
– Edeation Confluence
Jan 3 at 13:39
ok but I can run this script without error on my computer. Why doesn't it work on the VM ? Do you mean that the class is missing on the VM ?
– Edeation Confluence
Jan 3 at 13:39
It is missing in the classpath on your VM. Maybe it is in the classpath on your local machine
– Jens
Jan 3 at 13:43
It is missing in the classpath on your VM. Maybe it is in the classpath on your local machine
– Jens
Jan 3 at 13:43
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54023011%2ferror-occurred-during-initialization-of-vm-from-a-remote-debian-vm%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54023011%2ferror-occurred-during-initialization-of-vm-from-a-remote-debian-vm%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
As you can see in the stacktrace
java.lang.ClassNotFoundException: org.processmining.framework.util.ProMClassLoader
there is a required class missing in the classpath– Jens
Jan 3 at 13:15
ok but I can run this script without error on my computer. Why doesn't it work on the VM ? Do you mean that the class is missing on the VM ?
– Edeation Confluence
Jan 3 at 13:39
It is missing in the classpath on your VM. Maybe it is in the classpath on your local machine
– Jens
Jan 3 at 13:43