If you are reading this post, it means you have already read my previous post regard JRockit installation. If you have not read my previous post, here are the link to read it:
Now you have installed JRockit in your VM, now there is one little step you have to do to activate the JRockit.
STEPS:
1. Open your bash profile
- command : vi ~/.bash_profile
2. Press "i" to edit the file
3. Add an extra line as given below;
- command JAVA_HOME=<PATH_OF_JROCKIT_SOFTWARE>; export JAVA_HOME
4. save and exit the bash profile
- command : :wq!
5. Now Refresh the bash profile to reflect the changes.
- command : source ~/.bash_profile
6. Check if the JAVA_HOME parameter called the location of the JRockit software
- command : echo $JAVA_HOME
7. If you are getting the location of the JRockit installed location, then your JRockit is ready for some action.
0 comments