Java is an optional package on OSX Lion. Yet once installed it appears like the JAVA_HOME environment variable is not set properly.
|
With the Java optional package installed, Edit the file ~/.bash_profile and add the following line
this will set the environment variable accordingly. Update: added -v flag based on Jilles van Gurp response. |
|||||||||||||
|
|
The above didn't work for me with Amazon's EC2 tools, because it expects |
|||||||
|
|
On Mac OS X Lion, to set visualgc to run, I used:
|
|||||||||
|
|
/usr/libexec/java_home is not a directory but an executable. It outputs the currently configured JAVA_HOME and doesn't actually change it. That's what the Java Preferences app is for, which in my case seems broken and doesn't actually change the jvm correctly. It does list the 1.7 jvm but I can toggle/untoggle & drag and drop all I want there without actually changing the output of /usr/libexec/java_home. Even after installing 1.7.0 u6 from Oracle on Lion and setting it as the default in the preferences, it still returned the apple 1.6 java home. The only fix that actually works for me is setting JAVA_HOME manually: export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_06.jdk/Contents/Home/ At least this way when run from the command line it will use 1.7. /usr/libexec/java_home still insists on 1.6. Update: blog.hgomez.net/2012/07 has a better explanation on how this works.
is the way to do it |
||||
|
|
|
A better (more upgradable) way is to use the following:
This should work with AWS also since it has |
|||||
|
|
For me, Mountain Lion 10.8.2, the solution most voted does not work. I installed jdk 1.7 via Oracle and maven from homebrew. My solution is from the hadoop-env.sh file of hadoop which I installed from homebrew, too. I add the below sentence in ~/.bash_profile, and it works.
|
|||
|
|
This answer is related to Mountain Lion and not Lion. I needed to do this for the AWS Command Line Tools. According to the AWS docs, running So, I set Apparently, Update As mentioned in the comment below, this |
|||||
|
|
Got the same issue after I upgrade my Mac OS and following worked for me:
I think the jdk version might differ, so just use the version which you have under /Library/Java/JavaVirtualMachines/ |
|||
|
|
|
Newer Oracle JVMs such as 1.7.0_21-b12 seem to install here:
|
|||
|
|
