neo4j console does not start. ERROR: JAVA_HOME is incorrectly defined












1















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.










share|improve this question





























    1















    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.










    share|improve this question



























      1












      1








      1








      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.










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 23 '18 at 20:42









      Guy Coder

      15.2k43983




      15.2k43983










      asked Nov 23 '18 at 0:28









      zmajewzmajew

      173




      173
























          1 Answer
          1






          active

          oldest

          votes


















          0














          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.






          share|improve this answer























            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
            });


            }
            });














            draft saved

            draft discarded


















            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









            0














            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.






            share|improve this answer




























              0














              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.






              share|improve this answer


























                0












                0








                0







                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.






                share|improve this answer













                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 23 '18 at 0:49









                Guy CoderGuy Coder

                15.2k43983




                15.2k43983






























                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    404 Error Contact Form 7 ajax form submitting

                    How to know if a Active Directory user can login interactively

                    TypeError: fit_transform() missing 1 required positional argument: 'X'