neo4j console does not start. ERROR: JAVA_HOME is incorrectly defined
When I start neo4j console or neo4j-shell I get this error:
ERROR: JAVA_HOME is incorrectly defined as /usr/lib/jvm/java-8-oracle/jre/bin/java (the executable /usr/lib/jvm/java-8-oracle/jre/bin/java/bin/java does not exist)
On echo $JAVA_HOME I get:
/usr/lib/jvm/java-8-oracle/jre/bin/java
This is my settings in ~/.bashrc:
JAVA_HOME=/usr/lib/jvm/java-8-oracle/jre/bin/java
export JAVA_HOME
PATH=$PATH:$JAVA_HOME
export PATH
I have checked and tried all solutions on similar questions here and nothing worked.
I am running Ubuntu 18.04.1 LTS, and the neo4j community-3.5.0-rc01. I heve also tried on other neo4j versions.
ubuntu neo4j java-home
add a comment |
When I start neo4j console or neo4j-shell I get this error:
ERROR: JAVA_HOME is incorrectly defined as /usr/lib/jvm/java-8-oracle/jre/bin/java (the executable /usr/lib/jvm/java-8-oracle/jre/bin/java/bin/java does not exist)
On echo $JAVA_HOME I get:
/usr/lib/jvm/java-8-oracle/jre/bin/java
This is my settings in ~/.bashrc:
JAVA_HOME=/usr/lib/jvm/java-8-oracle/jre/bin/java
export JAVA_HOME
PATH=$PATH:$JAVA_HOME
export PATH
I have checked and tried all solutions on similar questions here and nothing worked.
I am running Ubuntu 18.04.1 LTS, and the neo4j community-3.5.0-rc01. I heve also tried on other neo4j versions.
ubuntu neo4j java-home
add a comment |
When I start neo4j console or neo4j-shell I get this error:
ERROR: JAVA_HOME is incorrectly defined as /usr/lib/jvm/java-8-oracle/jre/bin/java (the executable /usr/lib/jvm/java-8-oracle/jre/bin/java/bin/java does not exist)
On echo $JAVA_HOME I get:
/usr/lib/jvm/java-8-oracle/jre/bin/java
This is my settings in ~/.bashrc:
JAVA_HOME=/usr/lib/jvm/java-8-oracle/jre/bin/java
export JAVA_HOME
PATH=$PATH:$JAVA_HOME
export PATH
I have checked and tried all solutions on similar questions here and nothing worked.
I am running Ubuntu 18.04.1 LTS, and the neo4j community-3.5.0-rc01. I heve also tried on other neo4j versions.
ubuntu neo4j java-home
When I start neo4j console or neo4j-shell I get this error:
ERROR: JAVA_HOME is incorrectly defined as /usr/lib/jvm/java-8-oracle/jre/bin/java (the executable /usr/lib/jvm/java-8-oracle/jre/bin/java/bin/java does not exist)
On echo $JAVA_HOME I get:
/usr/lib/jvm/java-8-oracle/jre/bin/java
This is my settings in ~/.bashrc:
JAVA_HOME=/usr/lib/jvm/java-8-oracle/jre/bin/java
export JAVA_HOME
PATH=$PATH:$JAVA_HOME
export PATH
I have checked and tried all solutions on similar questions here and nothing worked.
I am running Ubuntu 18.04.1 LTS, and the neo4j community-3.5.0-rc01. I heve also tried on other neo4j versions.
ubuntu neo4j java-home
ubuntu neo4j java-home
edited Nov 23 at 20:42
Guy Coder
14.9k43982
14.9k43982
asked Nov 23 at 0:28
zmajew
173
173
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Notice the error at the end reads jre/bin/java/bin/java
. Notice the double bin/java
. You need to remove bin/java
from JAVA_HOME=/usr/lib/jvm/java-8-oracle/jre/bin/java
. Java knows the layout of the files so it knows that bin/java
will be below JAVA_HOME
and you don't need to give it.
add a comment |
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%2f53439381%2fneo4j-console-does-not-start-error-java-home-is-incorrectly-defined%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Notice the error at the end reads jre/bin/java/bin/java
. Notice the double bin/java
. You need to remove bin/java
from JAVA_HOME=/usr/lib/jvm/java-8-oracle/jre/bin/java
. Java knows the layout of the files so it knows that bin/java
will be below JAVA_HOME
and you don't need to give it.
add a comment |
Notice the error at the end reads jre/bin/java/bin/java
. Notice the double bin/java
. You need to remove bin/java
from JAVA_HOME=/usr/lib/jvm/java-8-oracle/jre/bin/java
. Java knows the layout of the files so it knows that bin/java
will be below JAVA_HOME
and you don't need to give it.
add a comment |
Notice the error at the end reads jre/bin/java/bin/java
. Notice the double bin/java
. You need to remove bin/java
from JAVA_HOME=/usr/lib/jvm/java-8-oracle/jre/bin/java
. Java knows the layout of the files so it knows that bin/java
will be below JAVA_HOME
and you don't need to give it.
Notice the error at the end reads jre/bin/java/bin/java
. Notice the double bin/java
. You need to remove bin/java
from JAVA_HOME=/usr/lib/jvm/java-8-oracle/jre/bin/java
. Java knows the layout of the files so it knows that bin/java
will be below JAVA_HOME
and you don't need to give it.
answered Nov 23 at 0:49
Guy Coder
14.9k43982
14.9k43982
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53439381%2fneo4j-console-does-not-start-error-java-home-is-incorrectly-defined%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