<div dir="ltr"><div>Still having trouble with the build process (Ovirt 3.1):</div><div>$ sudo make</div><div>... (success) ...</div><div>$ sudo make install</div>...<div><div>  inflating: /usr/local/share/ovirt-engine/engine.ear/webadmin.war/META-INF/maven/org.ovirt.engine.ui/webadmin/pom.xml  </div>

<div>  inflating: /usr/local/share/ovirt-engine/engine.ear/webadmin.war/404.html  </div><div>checkdir error:  /usr/local/share/ovirt-engine/engine.ear/engine-bll.jar exists but is not directory</div><div>                 unable to process engine-bll.jar/org/ovirt/engine/core/bll/VdsDeploy$32.class.</div>

<div>checkdir error:  /usr/local/share/ovirt-engine/engine.ear/engine-bll.jar exists but is not directory</div><div>                 unable to process engine-bll.jar/org/ovirt/engine/core/bll/InitBackendServicesOnStartupBean.class.</div>

<div>...</div><div>make: *** [install_artifacts] Error 2</div><div><br></div><div><br></div><div>any insights?</div><div><br></div><div>Thanks...</div><div><br></div><br><div class="gmail_quote">On Thu, Jan 24, 2013 at 8:52 PM, Juan Hernandez <span dir="ltr">&lt;<a href="mailto:jhernand@redhat.com" target="_blank">jhernand@redhat.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On 01/24/2013 04:20 PM, Yuval M wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<br>
I&#39;m installing Ovirt 3.1 on Fedora using this guide:<br>
<a href="http://www.ovirt.org/Building_oVirt_engine#Deploying_engine-config_.26_engine-manage-domains" target="_blank">http://www.ovirt.org/Building_<u></u>oVirt_engine#Deploying_engine-<u></u>config_.26_engine-manage-<u></u>domains</a><br>


<br>
and I&#39;m getting the error in the subject from make.<br>
there is indeed no rule for install_tools in the makefile.<br>
<br>
What am I missing?<br>
</blockquote>
<br></div></div>
Those instructions are out of date, use &quot;make install&quot;. That installs the files, but you will still need some changes to make the engine work:<br>
<br>
1. Create the ovirt user (the engine runs by default with this service, unless you change the /etc/syscofig/ovirt-engine file and add the ENGINE_USER and ENGINE_GROUP parameters):<br>
<br>
  useradd ovirt<br>
<br>
2. Create (mkdir -p ...) and change the ownership of the directories that the engine needs to own to ovirt:ovirt (chown ovirt:ovirt ...):<br>
<br>
  /etc/ovirt-engine<br>
  /var/log/ovirt-engine<br>
  /var/lock/ovirt-engine<br>
  /var/lib/ovirt-engine/content<br>
  /var/lib/ovirt-engine/<u></u>deployments<br>
  /var/tmp/ovirt-engine<br>
  /var/cache/ovirt-engine<br>
<br>
3. Enable the HTTP connector in the engine (the default is to enable only AJP, and that doesn&#39;t work without Apache as frontend) adding the following to the /etc/sysconfig/ovirt-engine file:<br>
<br>
  ENGINE_PROXY_ENABLED=false<br>
  ENGINE_HTTP_ENABLED=true<br>
  ENGINE_HTTP_PORT=8700<br>
  ENGINE_HTTPS_ENABLED=false<br>
  ENGINE_AJP_ENABLED=false<br>
<br>
4. Configure database connection details (the default in development environments is to use the postgres user and the trust mode) adding this to /etc/sysconfig/ovirt-engine:<br>
<br>
  ENGINE_DB_USER=postgres<br>
  ENGINE_DB_PASSWORD=<br>
<br>
5. Make sure that you have the PostgreSQL JDBC driver installed (rpm -q postgresql-jdbc) and install it if needed (yum install postgresql-jdbc).<br>
<br>
6. Now you can start the engine running the engine-service script:<br>
<br>
  engine-service start<br>
<br>
Look at the system log (the file /var/log/messages) and the engine logs (the files /var/log/ovirt-engine/server.<u></u>log and /var/log/ovirt-engine) for errors.<br>
<br>
7. Connect to <a href="http://localhost:8700" target="_blank">http://localhost:8700</a> and you should be able to login with user admin and letmein! as password.<br>
<br>
Note that I am assuming that you already created the database, and that you want to use this installation for development. If you are looking for an production installation I suggest using the RPMs.<br>
<br>
Also I tested this with the latest source from the repository, it will not work with older versions.<span class="HOEnZb"><font color="#888888"><br>
<br>
-- <br>
Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta 3ºD, 28016 Madrid, Spain<br>
Inscrita en el Reg. Mercantil de Madrid – C.I.F. B82657941 - Red Hat S.L.<br>
</font></span></blockquote></div><br></div></div>