Estoy tratando de configurar JAVA_HOME para poder instalar Apache Solr con la ayuda de este tutorial . Estoy conectado a mi servidor usando ssh con usuario root
Para permitir que el script sh en ejecución instale Apache Solr:
mount | grep noexec
Remontar el sistema de archivos con la opción de ejecución:
mount -o remount,exec /dev/md1
Luego, cada vez que intento instalarlo con los siguientes comandos
bin/install_solr_service.sh /tmp/solr-5.3.1.tgz
Me sale el siguiente mensaje:
WARNING: /opt/solr-5.3.1 already exists! Skipping extract ...
Creating /etc/init.d/solr script ...
The currently defined JAVA_HOME (/usr/local/jdk) refers
to a location where Java could not be found. Aborting.
Either fix the JAVA_HOME variable or remove it from the
environment so that the system PATH will be searched.
The currently defined JAVA_HOME (/usr/local/jdk) refers
to a location where Java could not be found. Aborting.
Either fix the JAVA_HOME variable or remove it from the
environment so that the system PATH will be searched.
Service solr installed.
Esto es lo que intenté hasta ahora:
nano /root/.bash_profile
nano /etc/profile
Agregué lo siguiente a los archivos anteriores al final y los guardé
export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.65-0.b17.el6_7.x86_64
export PATH=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.65-0.b17.el6_7.x86_64/bin:$PATH
Eso no funcionó.
Creé el siguiente archivo /etc/profile.d/java.sh y lo puse:
export JRE_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.65-0.b17.el6_7.x86_64/jre/
export PATH=$PATH:$JRE_HOME/bin
export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.65-0.b17.el6_7.x86_64
export JAVA_PATH=$JAVA_HOME
export PATH=$PATH:$JAVA_HOME/bin
Y ejecutó el siguiente comando:
source java.sh
Eso tampoco funcionó.
Traté de ejecutar el siguiente comando:
export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.65-0.b17.el6_7.x86_64
Sin suerte en absoluto.
Pero cuando ejecuto los siguientes comandos, eso es lo que obtengo
echo $JAVA_HOME
/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.65-0.b17.el6_7.x86_64
echo $PATH
/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.65-0.b17.el6_7.x86_64/bin:/usr/local/jdk/bin:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.65-0.b17.el6_7.x86_64/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.65-0.b17.el6_7.x86_64/jre//bin:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.65-0.b17.el6_7.x86_64/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin