0
I want to install Subversion Edge on Linux. I've downloaded CollabNetSubversionEdge-1.3.3_linux-x86.tar.gz
from here and I'm following the instruction from here
When I execute bin/csvn start
on the terminal, I'm getting this error:
Unable to start CSVN Console: no Java executable found
Please make sure the variable JAVA_HOME is defined in your environment
I've already ensured that JRE is installed by doing the following:
>> locate 'bin/java'
/usr/bin/java
/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre/bin/java
*/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0/jre/bin/java
/usr/lib/openoffice.org/ure/bin/javaldx
I've made the necessary changes with the instructions from here and here
I've changed the JAVA_PATH
and JRE_PATH
to /usr/local/bin/java
which is a softlink to /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0/jre/bin/java
which I'm confident is the absolute link to the JRE
installed.
After making those changes, I've restarted my computer. I tried to execute bin/csvn start
, but I am still getting the same error.
Please help. Thanks in advance
2What is the value of your
JAVA_HOME
environment variable? – Mat – 2011-06-11T07:07:52.4232also, what is output of
java -version
– bbaja42 – 2011-06-11T07:23:06.270hi, echo $JAVA_HOME = /usr/local/bin/java. And the java -version is [root@localhost ~]# java -version java version "1.6.0_17" OpenJDK Runtime Environment (IcedTea6 1.7.10) (rhel-1.20.b17.el5-i386) OpenJDK Client VM (build 14.0-b16, mixed mode) – nuttynibbles – 2011-06-11T08:02:40.117