
----- Original Message -----
From: Juan Hernandez <jhernand@redhat.com> To: Stephen Liu <satimis@yahoo.com> Cc: Laszlo Hornyak <lhornyak@redhat.com>; "engine-devel@ovirt.org" <engine-devel@ovirt.org> Sent: Wednesday, November 14, 2012 7:17 PM Subject: Re: [Engine-devel] Building oVirt from source
On 11/14/2012 12:09 PM, Stephen Liu wrote:
Hi all,
$ sudo find / -name .m2 find: `/run/user/satimis/gvfs': Permission denied /home/satimis/.m2
$ sudo ls -ald /home/satimis/.m2 drwxrwxr-x. 3 satimis satimis 4096 Nov 14 14:12 /home/satimis/.m2
$ cat $HOME/.m2/settings.xml <settings xmlns="http://maven.apache.org/POM/4.0.0" <http://maven.apache.org/POM/4.0.0%22>; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <http://www.w3.org/2001/XMLSchema-instance%22>; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" <http://maven.apache.org/xsd/settings-1.0.0.xsd%22>;>
<!--**************************** PROFILES
****************************-->
<activeProfiles>
<activeProfile>oVirtEnvSettings</activeProfile>
</activeProfiles>
<profiles> <profile> <id>oVirtEnvSettings</id> <properties> <jbossHome>/usr/share/jboss-as</jbossHome>
<JAVA_HOME>/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/bin/java</JAVA_HOME>
</properties> </profile> </profiles> </settings>
This ^ (/home/satimis/.m2/settings.xml) is the file that you need to change, and you need to change the "jbossHome" property so that it contains the directory where you actually have the application server installed.
Please remove or fix the JAVA_HOME property as well, as it is not needed and pointing a location that doesn't exist in Fedora 17.
Whether to run:- # mv /home/satimis/jboss-as /usr/share/ # rm -rf /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64 # service jboss-as restart #> ps ax | grep java (to check jboss running) Then run again; $> cd $OVIRT_HOME/ear $> mvn clean install -Pdep,setup followed by; Deploying engine-config & engine-manage-domains $> cd $OVIRT_HOME $> make create_dirs $> make install_tools $> make install_config etc. Stephen L