J'essaie de configurer JAVA_HOME pour pouvoir installer Apache Solr à l'aide de ce tutoriel . Je suis connecté à mon serveur en utilisant ssh avec l'utilisateur root
Pour autoriser le script sh en cours d'installation à installer Apache Solr:
mount | grep noexec
Remontage du système de fichiers avec l'option exec:
mount -o remount,exec /dev/md1
Ensuite, chaque fois que j'essaie de l'installer à l'aide des commandes suivantes
bin/install_solr_service.sh /tmp/solr-5.3.1.tgz
Je reçois le message suivant:
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.
Voici ce que j'ai essayé jusqu'à présent:
nano /root/.bash_profile
nano /etc/profile
J'ai ajouté ce qui suit aux fichiers ci-dessus à la fin et les ai enregistrés
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
Ça n'a pas marché.
J'ai créé le fichier suivant /etc/profile.d/java.sh et je l'ai mis:
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
Et a exécuté la commande suivante:
source java.sh
Cela n'a pas fonctionné non plus.
J'ai essayé d'exécuter la commande suivante:
export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.65-0.b17.el6_7.x86_64
Pas de chance du tout.
Mais quand je lance les commandes suivantes, c'est ce que j'obtiens
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