Reputation: 51
I want to setup oracle client
in my server . But I see this error
. How can I fixed?
The Java RunTİme Enviroment
was not found at bin\javaw.exe
. Hence, the Oracle Universal Installer
cannot be run. Please visit this link and install JRE version 1.3.1 or higher
and try again.
Upvotes: 4
Views: 22424
Reputation: 329
For me this was caused by some issue with the unzipped installer. I copied the zip to my local machine, unzipped and installed without issue.
Upvotes: 0
Reputation: 11
from: http://paulsoftech.blogspot.de/2012/09/binjavawexe-not-found-when-trying-to.html
install JRE-1.7.0
add these 2 lines at the file oraparam.ini
JRE_VERSION=1.7.0
JRE_LOCATION=C:\Program Files\Java\jre7
comments the line :
JRE_VERSION=1.4.2
Upvotes: 1
Reputation: 115388
I believe that the problem is that setup of JRE does not create environment variable JAVA_HOME
required by many tools probably including Oracle client. So, just add this variable manually. It should point to path where your JRE is installed, i.e. in your case C:\Program Files\Java\jre7\
Upvotes: 1