Sto cercando di impostare JAVA_HOME in modo da poter installare Apache Solr con l'aiuto di questo tutorial . Sono connesso al mio server usando ssh con l' utente root
Per consentire allo script sh in esecuzione di installare Apache Solr:
mount | grep noexec
Rimontaggio del file system con l'opzione exec:
mount -o remount,exec /dev/md1
Quindi ogni volta che provo a installarlo usando i seguenti comandi
bin/install_solr_service.sh /tmp/solr-5.3.1.tgz
Ricevo il seguente messaggio:
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.
Questo è quello che ho provato finora:
nano /root/.bash_profile
nano /etc/profile
Ho aggiunto quanto segue ai file sopra alla fine e li ho salvati
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
Non ha funzionato.
Ho creato il seguente file /etc/profile.d/java.sh e l'ho inserito:
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
Ed eseguì il seguente comando:
source java.sh
Anche quello non ha funzionato.
Ho provato a eseguire il seguente comando:
export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.65-0.b17.el6_7.x86_64
Nessuna fortuna a tutti.
Ma quando eseguo i seguenti comandi è quello che ottengo
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