How to set JAVA_HOME in Linux for all users
- 2024-10-09 09:10:00
- admin 原创
- 86
问题描述:
I am new to Linux system and there seem to be too many Java folders.
java -version gives me:
java version "1.7.0_55"
OpenJDK Runtime Environment (rhel-2.4.7.1.el6_5-x86_64 u55-b13)
OpenJDK 64-Bit Server VM (build 24.51-b03, mixed mode)
When I am trying to build a Maven project , I am getting error:
Error: JAVA_HOME is not defined correctly.
We cannot execute /usr/java/jdk1.7.0_05/bin/java
Could you please tell me which files I need to modify for root as well as not-root user and where exactly is java located?
解决方案 1:
find /usr/lib/jvm/java-1.x.x-openjdk
vim /etc/profile
Prepend sudo if logged in as not-privileged user, ie. sudo vim
Press 'i' to get in insert mode
add:
export JAVA_HOME="path that you found"
export PATH=$JAVA_HOME/bin:$PATH
logout and login again, reboot, or use
source /etc/profile
to apply changes immediately in your current shell
解决方案 2:
对于所有用户,我建议在/etc/profile.d/java_home.sh
以下几行中创建一个文件
# Set JDK installation directory according to selected Java compiler
export JAVA_HOME=$(readlink -f /usr/bin/javac | sed "s:/bin/javac::")
这将动态更新,并与备选系统配合良好。但请注意,更新只会在新的登录 shell 中进行。
解决方案 3:
您可以使用 /etc/profile 或者更好的文件,例如 /etc/profile.d/jdk_home.sh
export JAVA_HOME=/usr/java/jdk1.7.0_05/
您必须记住,此文件仅在新的登录 shell 中加载。因此,在 bash -l 或新的 gnome-session 之后,它不会随着新 Java 版本的出现而改变。
解决方案 4:
Open terminal and type
sudo gedit .bashrc
It will ask you your password. After typing the password, it will open the bash file. Then go to end and type:
export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64/"
export PATH=$PATH:$JAVA_HOME/bin
Then save the file and exit from file
Above is for a single user. For all users, you have to follow below steps
sudo gedit /etc/profile
export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64/"
export PATH=$PATH:$JAVA_HOME/bin
解决方案 5:
None of the other answers were "sticking" for me in RHEL 7, even setting JAVA_HOME
and PATH
directly in /etc/profile
or ~/.bash_profile
would not work. Each time I tried to check if JAVA_HOME
was set, it would come up blank:
$ echo $JAVA_HOME
(<-- no output)
What I had to do was set up a script in /etc/profile.d/jdk_home.sh
:
#!/bin/sh
export JAVA_HOME=/opt/ibm/java-x86_64-60/
export PATH=$JAVA_HOME/bin:$PATH
I initially neglected the first line (the #!/bin/sh
), and it won't work without it.
Now it's working:
$ echo $JAVA_HOME
/opt/ibm/java-x86_64-60/
解决方案 6:
Copy the bin file path you installed
YOUR PATH
open terminal and edit environment file by typing following command,
sudo nano /etc/environment
In this file, add the following line (replacing YOUR_PATH
by the just copied path):
JAVA_HOME="YOUR_PATH"
That should be enough to set the environment variable. Now reload this file:
source /etc/environment
now test it by executing:
echo $JAVA_HOME
解决方案 7:
首先,您需要确定您的 PC 上安装了哪种 Java 以及要使用哪种 Java。为此,请以 root 权限打开终端。
sudo su
ls /usr/lib/jvm/
现在它将列出可用的 Java 版本。选择列出的版本。
复制路径到那里。
现在打开.bashrc
nano ~/.bashrc
将以下命令添加到末尾
export JAVA_HOME="path that you copied"
export PATH=$JAVA_HOME/bin:$PATH
然后按 Ctrl+S 和 Ctrl+X 保存文件并退出
现在运行以下命令:
source ~/.bashrc
解决方案 8:
之前的帖子给出的答案是有效的。但是对于以下问题,没有一个答案是完整的:
不建议更改 /etc/profile,原因如下(如 /etc/profile 中所述):
除非您知道自己在做什么,否则最好不要更改此文件。最好在 /etc/profile.d/ 中创建一个 custom.sh shell 脚本来对您的环境进行自定义更改,因为这将避免将来更新时需要合并。*
因此,如上所述,创建 /etc/profile.d/custom.sh 文件以进行自定义更改。
现在,为了始终保持安装的 Java 的更新版本,永远不要输入绝对路径,而是使用:
如果将 jdk 设为 java home
导出 JAVA_HOME=$(readlink -f /usr/bin/javac | sed "s:/bin/javac::")
或者
如果将 jre 设为 java home
导出JAVA_HOME = $(readlink -f /usr/bin/java | sed“s:/bin/java::”)
并记住在 custom.sh 文件上有#! /bin/bash
解决方案 9:
做 Oracle 所做的事情(作为前 Sun 员工,我无法习惯这一点)
ln -s latestJavaRelease /usr/java/default
其中 latestJavaRelease 是您要使用的版本
然后导出JAVA_HOME=/usr/java/default
解决方案 10:
1...使用快捷键Ctlr
+ Alt
+T
打开终端
2...执行以下命令:
echo export JAVA_HOME='$(readlink -f /usr/bin/javac | sed "s:/bin/javac::")' | sudo tee /etc/profile.d/jdk_home.sh > /dev/null
source /etc/source
3...(推荐)重启虚拟机/电脑。如果不想重启电脑,可以使用
4...使用快捷键Ctlr
++打开终端Alt
`T`
5...已验证 JAVA_HOME 安装
echo $JAVA_HOME
一行代码来自flob,感谢他们
解决方案 11:
This is a very simple script to solve the problem
export JAVA_HOME_BIN=`which java`
export JAVA_HOME_DIR=`dirname $JAVA_HOME_BIN`
export JAVA_HOME=`dirname $JAVA_HOME_DIR`
And for testing:
echo $JAVA_HOME
解决方案 12:
Posting as answer, as I don't have the privilege to comment.
Point to note: follow the accepted answer posted by "That Dave Guy".
After setting the variables, make sure you set the appropriate permissions to the java directory where it's installed.
chmod -R 755 /usr/java
解决方案 13:
All operational steps(finding java, parent dir, editing file,...) one solution
zFileProfile="/etc/profile"
zJavaHomePath=$(readlink -ze $(which java) | xargs -0 dirname | xargs -0 dirname)
echo $zJavaHomePath
echo "export JAVA_HOME=\"${zJavaHomePath}\"" >> $zFileProfile
echo "export PATH=$PATH:$JAVA_HOME/bin" >> $zFileProfile
Result:
# tail -2 $zFileProfile
export JAVA_HOME="/usr/lib/jvm/java-11-openjdk-11.0.7.10-1.el8_1.x86_64"
export PATH=$PATH:$JAVA_HOME/bin
Explanation:
1) Let's break the full command into pieces
$(readlink -ze $(which java) | xargs -0 dirname | xargs -0 dirname)
2) Find java path from java command
# $(which java)
"/usr/bin/java"
3) Get relative path from symbolic path
# readlink -ze /usr/bin/java
"/usr/lib/jvm/java-11-openjdk-11.0.7.10-1.el8_1.x86_64/bin/java"
4) Get parent path of /usr/lib/jvm/java-11-openjdk-11.0.7.10-1.el8_1.x86_64/bin/java
# readlink -ze /usr/bin/java | xargs -0 dirname
"/usr/lib/jvm/java-11-openjdk-11.0.7.10-1.el8_1.x86_64/bin"
5) Get parent path of /usr/lib/jvm/java-11-openjdk-11.0.7.10-1.el8_1.x86_64/bin/
# readlink -ze /usr/bin/java | xargs -0 dirname | xargs -0 dirname
"/usr/lib/jvm/java-11-openjdk-11.0.7.10-1.el8_1.x86_64"
解决方案 14:
Step 1 - check the current java version by "echo $JAVA_HOME"
Step 2 - vim /etc/profile
Step 3 - At the end of file you will find
export JAVA_HOME, we need to provide the new path here, make sure that it is not relative.
Step 4 - Save and exit :wq
Step 5 - "source /etc/profile/", this would execute the change
Step 6 - Again do a echo $JAVA_HOME - change would have been reflected.
解决方案 15:
Probably a good idea to source whatever profile you edit to save having to use a fresh login.
either:
source /etc/
or
. /etc/
Where is whatever profile you edited.
解决方案 16:
On Linux I add this line to my ~/.profile:
export JAVA_HOME=$(readlink -ze /usr/bin/javac | xargs -0 dirname -z | xargs -0 dirname)
解决方案 17:
While we are up to setting JAVA_HOME, let me share some benefits of setting JAVA_HOME or any other environment variable:
1) It's easy to upgrade JDK without affecting your application startup and config file which points to JAVA_HOME. you just need to download new version and make sure your JAVA_HOME points to new version of Java. This is best benefit of using environment variable or links.
2)JAVA_HOME变量简短简洁,而不是JDK安装目录的完整路径。
3)JAVA_HOME变量与平台无关,即如果您的启动脚本使用JAVA_HOME,那么它可以在Windows和UNIX上运行而无需任何修改,您只需要在相应的操作系统上设置JAVA_HOME。
阅读更多: http: //javarevisited.blogspot.com/2012/02/how-to-set-javahome-environment-in.html#ixzz4BWmaYIjH
解决方案 18:
使用 SDKMAN sdkman.io在您的 sdk 之间切换。
它为您设置JAVA_HOME。
解决方案 19:
使用 sudo打开kafka-run-class.sh进行写入
您可以在 kafka 文件夹中找到kafka-run-class.sh:kafka/bin/kafka-run-class.sh
检查这些行
修改 else 部分中的 JAVA 变量以指向 java/bin 中的 java 可执行文件。如JAVA="$JAVA_HOME/java"
解决方案 20:
在 /etc/profile 中,如果你打开它,你就会知道不建议在该文件上写入内容。相反,你可以制作一个命令脚本(假设是 test.sh),转到 /etc/profile.d 文件夹并将 test.sh 放在那里。每次你重新启动实例时,它都会被 /etc/profile 自动调用。
解决方案 21:
对于新手来说,使用 vim 可能有点困难。我们可以改用 gedit 文本编辑器。
查找 /usr/lib/jvm/java-1.xx-openjdk
输入“gedit /etc/profile”或使用“sudo gedit /etc/profile”(如果以非特权身份登录)
在行末添加以下内容:
export JAVA_HOME="您找到的路径"
导出 PATH=$JAVA_HOME/bin:$PATH
在当前 shell 中输入“source /etc/profile”以应用更改
解决方案 22:
export JAVA_HOME="/usr/lib/jvm/jdk-*"
解决了这个问题
解决方案 23:
而且我也遇到了别人在其他脚本中导出 PATH 的问题,在我的例子中,.bashrc 中有一行 sdkman
export PATH=/home/ars/.sdkman/candidates/gradle/current/bin:/home/ars/.nvm/versions/node/v15.14.0/bin:/home/ars/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
所以当我跑步时echo $JAVA_HOME
会有结果,但跑步时echo $PATH
没有$JAVA_HOME/bin
解决方案 24:
我使用以下行:
export JAVA_HOME=$(readlink -f $(dirname $(readlink -f $(which java) ))/../)
到我的 ~/.profile,这样它在登录时就会使用默认 java 目录的基础。这是针对 bash 的。
解决方案 25:
如果不起作用请尝试这个:
apt install openjdk-8-jdk-headless
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件