Setting the java path - java

I am having some difficulty.
I am trying to set the path on a machine, i have set Java_Home to C:\Program Files\Java\jdk1.4.2_01\bin
and Path to C:\Program Files\Java\jdk1.4.2_01\bin;C:\Program Files\Common...
yet whenever i do java -version in cmd i get
Java(TM) 2 Runtime Environment, Standard Edition (build
Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode)
any ideas why this might be?
Thanks

First, JAVA_HOME should be set (if it is set) to the root directory of the Java installation, or in your case
C:\Program Files\Java\jdk1.4.2_01
Second, JAVA_HOME is an older way of letting programs know where Java resides. It should be set more for "backwards compatibility" and less for "making it work".
The Path then should have an entry
${JAVA_HOME}\bin
And it is the additional "bin" on the path that will allow the executables to be found. Make sure that this java executable is found on your path first, and you will see a difference in output
Finally, unless you absolutely need Java 1.4, an upgrade is recommended.

You don't have to care about JAVA_HOME as it is not needed to run Java. It's used by some applications.
Check your path for additional entries that contain a jdk/jre. Move your PATH values to the front of the current path.
If you've changed the PATH environment variable in windows (through the dialogs), make sure that you spawn a new console because running consoles will not pick up global changes...

JAVA_HOME should be set to C:\Program Files\Java\jdk1.4.2_01, and the path should contain both C:\Program Files\Java\jdk1.4.2_01\bin and C:\Program Files\Java\jdk1.4.2_01\jre\bin

Related

Why does maven ignores the JDK i installed?

When I do anything with Maven (using mvn command) I get the following message:
The JAVA_HOME environment variable is not defined correctly This
environment variable is needed to run this program NB: JAVA_HOME
should point to a JDK not a JRE
java -version
returns the following:
openjdk version "1.8.0_212-1-ojdkbuild"
OpenJDK Runtime Environment (build 1.8.0_212-1-ojdkbuild-b04)
OpenJDK 64-Bit Server VM (build 25.212-b04, mixed mode)
My JAVA_HOME points at the bin folder of this JDK.
My PATH variable also has the same bin folder in it.
My question is what am I doing wrong? Shouldnt java -version say Development kit instead of Runtime enviroment?
I don't think we are going to work out what the problem by asking you questions. Instead I suggest you do the following:
At the command prompt, set the environment variable %MAVEN_BATCH_ECHO% to the value on. Then at the same command prompt, run mvn. This is supposed to echo all commands that the mvn.cmd batch file runs.
Compare the output with the source of the batch file ... as installed on your system. In particular, see what gets echo'd for these lines:
#REM ==== START VALIDATION ====
if not "%JAVA_HOME%"=="" goto OkJHome
for %%i in (java.exe) do set "JAVACMD=%%~$PATH:i"
goto checkJCmd
:OkJHome
set "JAVACMD=%JAVA_HOME%\bin\java.exe"
:checkJCmd
if exist "%JAVACMD%" goto chkMHome
echo The JAVA_HOME environment variable is not defined correctly >&2
echo This environment variable is needed to run this program >&2
echo NB: JAVA_HOME should point to a JDK not a JRE >&2
goto error
(Note that the above excerpt is taken from the most recent version of the Maven batch file does. You may have an older version of Maven that does something different. Check it before jumping to conclusions.)
If that doesn't work, modify the batch file and add a line to echo what %JAVA_CMD% is set to. Then run the modified batch file.
Note that the validation is actually checking that %JAVA_CMD% exists as a file.
I see you have actually solved the problem by reinstalling. Unfortunately, that doesn't tell us what the problem really was.
JAVA_HOME should refer to folder where bin folder is located, but I think you have installed inly java, without jdk, run javac -version you will see if compiler is available.
Probably you should install package openjdk-8-jdk, but you have only openjdk-8-jre. Thats ubuntu package names. Name can be different depending on your OS.
It seems you have installed JDK under C:\Program Files\... and therefore you need to put the absolute path in both, JAVA_HOME and PATH environment variables i.e. do not set %JAVA_HOME%\bin in PATH; rather, set C:\Program Files\...\bin in PATH environment variable.
Also, make sure the path set in JAVA_HOME is one level above the path set in PATH variable.
Last but not the least, make sure you move the path of this JDK above all values under PATH which will make sure that the path of another JDK does not take precedance over the JDK which you want to work with.
After uninstalling everything and clearing directories and computer restart. I reinstalled everything. In System variables PATH is set to java path + /bin and on JAVA_HOME its just the path to the folder.
MAven is operational again

jmeter wont run !Not able to find Java executable or version. Please check your Java installation"

I installed java from the offical java download page https://java.com/en/download/win10.jsp
It installed what appears to be a 32bit on my 64 bit system, which I can only guess is OK, as it did not present any other options.
I edited my system environtment variables, and added JAVA_HOME and added %JAVA_HOME%\bin to my "user variables" Path definition.
typing "set" in a cmd window produces:
JAVA_HOME=C:\Program Files (x86)\Java\jre1.8.0_151
:
Path=C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;.....C:\Program Files (x86)\Java\jre1.8.0_151\bin;
At the command prompt, "java -version"
produces:
java version "1.8.0_151"
Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
Java HotSpot(TM) Client VM (build 25.151-b12, mixed mode)
But when I try to launch jmeter.bat, I get:
jmeter wont run !Not able to find Java executable or version. Please check your Java installation"
Any ideas?
If possible move your JRE to folder which doesn't have spaces in its path.
If for some reason it is not possible - surround path to "bin" folder of your JRE installation with quotation marks
In any case you should be able to run JMeter as:
java -jar ApacheJMeter.jar
See Setting the JAVA_HOME Variable in Windows for more details.
I would strongly recommend switching to 64-bit server JRE as on 32-bit one you won't be able to allocate more than 4 GB to JMeter which might be not enough when it comes to high loads.
Check out JMeter Best Practices and 9 Easy Solutions for a JMeter Load Test “Out of Memory” Failure articles for more information on tuning JMeter for maximum performance
Your Java home is connected to JRE and not JDK (C:\Program Files (x86)\Java\jre1.8.0_151). See tutorial:
Windows: Set the environment variable JAVA_HOME to C:\Program Files\Java\jdk1.7.0_25
It should be connected to C:...\jdk[version] path, so set JAVA_HOME as:
set JAVA_HOME=C:\Program Files (x86)\Java\jdk1.8.0_151
You can try to add JAVA_HOME "c:\Users\User\.jdks\corretto-1.8.0_322" to System variables, but in my case I had to add %JAVA_HOME%\bin to PATH System variable as well. As a result - I can you orignal jmeter.bat file.
Check-out this article, best way to set JAVA_HOME. The long and short of it, if using Windows, download the JDK, open your command prompt and type in the following command:
setx -m JAVA_HOME "C:\Progra~1\Java\jdk1.8.0_XX". Normally, the JDK is stored in your C:\Program Files\Java...

Java -version will not update after SDK installation

I am having an issue launching Eclipse saying incorrect JVM version(1.5, needs 1.7+), I installed both Java 7 and 8 from the website but when checking the version in cmd, i am still seeing 1.5
java version "1.5.0_30"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_30-b03)
Java HotSpot(TM) Client VM (build 1.5.0_30-b03, mixed mode)
It was my understanding that when I install a newer jdk, this version would update. How can I manually update this?
My Java_Home variable is pointing to the newer jdk.
C:\Program Files (x86)\java\jdk1.7.0_79
check your PATH environment variable
Start eclipse with the -vm argument, followed by the address of the jvm you want to use.
This way, you'll be sure of the version you're using.
Example:
eclipse.exe -vm C:\_jde\Java\jdk1.8.0_45\bin\javaw.exe
I think you need to add your JAVA_HOME variable to path as well.
appending the JAVA_HOME like this should set java 7 to default in your system .
%JAVA_HOME%\bin;
or you can check this link to see how to set java.
It's most likely that your system variable is still having this. Please recheck your system variable.
Also, you have an option of setting your default JRE:
Open Eclipse.
Navigate to Window > Preferences > Java > Installed JREs
Set your default JRE
I face this issue whenever i switch between various Java versions. The solution is below:
Go to c:\Windows\system32
Delete java.exe, javaw.exe, javaws.exe files
Open the command prompt and check the java -version.
Hope this is helpful!

JDK 8 not available in classpath

I have Java 7 in my machine from a long time .And now I have installed Java 8 too .The problem is even after changing the JAVA_HOME & path variable to point to jdk 8, I still get jdk 7 in the classpath.
Snapshot of the environment variables below
But I get the below when checking the version in windows.Is there anything else I should do to get it pointed to jdk8?
C:\Users>java -version
java version "1.7.0_71"
Java(TM) SE Runtime Environment (build 1.7.0_71-b14)
Java HotSpot(TM) 64-Bit Server VM (build 24.71-b01, mixed mode)
Snapshot of the environment variables below
Remove java.exe, Javac.exe and javaw.exe from system32
Remove oraclePath like some text in path of system variable(from jdk8 it will create a new system variable when installing)
Can you check in your System variables that in the PATH variable, there is no path to your JDK 7?
Even if you define or override a Path variable in the "user" variables, Windows just concatenate the system variables with the user ones, in this order.
So if there is a path to your JDK 7 in System path, you will have this kind of value :
PATH=;.....;D:\java\jdk8;%MAVEN_HOME%
Four things that come to mind:
You seem to have edited the user variables. Have you looked at the system variables? I would prefer to set the JAVA_HOME and PATH variables at system level.
Have you restarted cmd/Windows?
You could type where java in your cmd to see where Windows finds Java(s).
What is your PATH variable? Looking at your snapshot I it to contain at least %JAVA_HOME%\bin.
Go in control panel and type java in the search box type java. Click on the link on the java label. Then click on tab java. You will see the active runtimes. Untick the one you don't need.

trouble uninstalling java on win7 machine

I am trying to uninstall java through control panel-->uninstall, however when I run cmd and type java -version, I still obtain:
java -version
java version "1.7.0_07"
Java(TM) SE Runtime Environment (build 1.7.0_07-b10)
Java Hotspot(TM) 64-Bit Server VM (build 23.3-b01, mixed mode)
Thanks.
You should check your path from the command line.
I have multiple JDKs and JREs installed and if needed (for an old application), I change my path.
Go to your command like, type path and hit enter.
Also, in order to see the JAVA_HOME, type echo %JAVA_HOME% in your command line.
Check exactly which version of java is still installed on your system.
Then find it in the control panel and remove it.
Please provide feedback. The more extreme solutions would be:
Try another uninstaller such as revo uninstaller (I am not affiliated with them).
Remove the directory, also the entries in your environmental variables (path, etc).
Option 2 is the last solution and not the best.
Open cmd
C:> for %i in (javac.exe) do #echo. %~$PATH:i
If you have a JDK installed, the Path is displayed,
for example: C:\Program Files\Java\jdk1.7.0_07\bin\javac.exe
You can remove them.
And you have to remove JAVA related system variables by going here
Start -> Computer -> System Properties -> Advanced system settings -> Environment Variables -> System variables -> PATH.
It seems you are having another java installed in your machine. Go to environment variable as said here then find out where your JAVA_HOME has been set and remove that installed java from your system.
Restart the windows system and check again.
prior to restart remove JAVA_HOME and PATH variable from system environment variables.
if still the problem persists that mean you have jre left with uninstalled. so,check properly and try to find it and uninstall it.

Categories

Resources