📜  找不到java;设置 JAVA_HOME 或确保 java 在 PATH - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:06.859000             🧑  作者: Mango

代码示例1
After reading the docs from ElasticSearch,
I found that if you're running on Ubuntu or Debian,
the package only ships with the OpenJDK because of licensing issues.
To fix this Java path problem, I installed the following
after installing ElasticSearch (as directed by the docs):

    sudo add-apt-repository ppa:webupd8team/java
    sudo apt-get update
    sudo apt-get install oracle-java8-installer
    java -version
Then upon running
sudo service elasticsearch start
everything worked and I had no more Java path issues.