Re: JAVA_HOME problems after upgrade

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Richard Megginson wrote:
Yes. Please see installation prerequisites here - http://directory.fedora.redhat.com/wiki/Install_Guide

Even with the IBM J2SDK installed and JAVA_HOME set correctly,
the lines:

if [ ! -f java -a ! -x java ]
then
  echo "$0: The java program is not in your path, or is not executable."
  exit 1
fi

... in startconsole are always going to fail.  What is probably required
are:

if [ ! -f $JAVA_HOME/bin/java -a ! -x $JAVA_HOME/bin/java ]
then
  echo "$0: The java program is not in your path, or is not executable."
  exit 1
fi

(see line 69 where it runs the correct java binary -- the test for "-f java"
is only going to work if the java binary is in the current directory, not
in JAVA_HOME/bin where it should be).

--
Del

--
Fedora-directory-users mailing list
Fedora-directory-users@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/fedora-directory-users

[Index of Archives]     [Fedora Directory Users]     [Fedora Directory Devel]     [Fedora Announce]     [Fedora Legacy Announce]     [Kernel]     [Fedora Legacy]     [Share Photos]     [Fedora Desktop]     [PAM]     [Red Hat Watch]     [Red Hat Development]     [Big List of Linux Books]     [Gimp]     [Yosemite News]

  Powered by Linux