installation maven2 sous centos6 - Installation - Linux et OS Alternatifs
Marsh Posté le 16-07-2012 à 17:57:02
l'installation de maven a finlement abouti; voici les etapes que j'ai suivi:
installation maven
~~~~~~~~~~~~~~
cd /root/Téléchargements
tar vfx apache-maven-2.2.1-bin.tar.gz
mv apache-maven-2.2.1 /opt/maven
export MAVEN2_HOME=/opt/maven
export M2=$MAVEN2_HOME/bin
MAVEN_OPTS="-Xms256m -Xmx512m"
PATH=$M2:$PATH
mvn -version
toutefois, il ne m'est pas possible de le lancer, apres la derniere commande, voilà ce que j'ai comme message:
which: no java in (/opt/maven/binopt/maven/binusr/lib/qt-3.3/binusr/local/sbinusr/sbinsbinusr/local/binusr/binbinroot/bin)
Error: JAVA_HOME is not defined correctly.
We cannot execute
je ne omprends pas vraiment le problème, java est bien installé; voilà comment j'ai procédé:
installation java
~~~~~~~~~~~
cd /root/Téléchargements
chmod +x jdk-6u33-linux-i586.bin
./jdk-6u33-linux-i586.bin
mv jdk1.6.0_33 /opt/java
JAVA_HOME=/opt/java
export JAVA_OPTS="-server -Xmx1028m -XX:MaxPermSize=320m -Djava.awt.headless=true -Dcom.sun.management.jmxremote -Dsun.lang.ClassLoader.allowArraySyntax=true"
export J6=$JAVA_HOME/bin
toute idée est la bienvenue
Marsh Posté le 16-07-2012 à 16:38:54
Bonjour tout le monde
je désire nstaller maven 2 sous centos 6.
je procède comme suit:
d /root/Téléchargements
tar -vfx apache-maven-2.2.1-bin.tar.gz
mv /opt/apache-maven-2.2.1 /opt/maven
MAVEN2_HOME=/opt/maven-2.2.1
export PATH=$PATH:$HOME/maven2/bin
MAVEN_OPTS='-Xms128m -Xmx796m -XX:PermSize=64m -XX:MaxPermSize=172m'
mais une fois je tape la commande:
mvn -version
j'ai le msg d'erreur suivant:
bash: mvn : commande introuvable
En cherchant sur internet, j'ai truvé que ça peux être à cause des PATH VARIABLES
donc apres la commande:
echo $PATH
j'ai l'output suivant:
/usr/lib/qt-3.3/binusr/local/sbinusr/sbinsbinusr/local/binusr/binbinroot/bin
je n'y trouve pas je $java_home qui est: /opt/java
aurriez vous une idée pr régler ce problème??
j'ai même essayé de desinstaller maven et reprendre l'installation; et en tappant la commande:
yum remove maven
je me shope la réponse suivante:
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Remove Process
No Match for argument: maven
Loading mirror speeds from cached hostfile
* base: fr2.rpmfind.net
* extras: fr2.rpmfind.net
* updates: fr2.rpmfind.net
No Packages marked for removal
ce qui voudrait, apparemment, dire que maven n'est pas installé. Pourtant j'ai bien veillé à respecter les étapes du tuto.
Merci pour votre aide.