Re: [Users] BSTRAP component='CreateConf' status='FAIL' message='Basic configuration failed to import default values'

Please rm /tmp/*py* in your host. Older scripts may be interrupting. Sent from my Android phone. Please ignore typos. -----Original Message----- From: =?iso-8859-1?Q?Karli_Sj=F6berg?= [Karli.Sjoberg@slu.se] Received: Thursday, 28 Jun 2012, 21:37 To: Itamar Heim [iheim@redhat.com]; Dan Kenigsberg [danken@redhat.com] CC: users@oVirt.org [users@ovirt.org] Subject: Re: [Users] BSTRAP component='CreateConf' status='FAIL' message='Basic configuration failed to import default values' ________________________________________ Från: Itamar Heim [iheim@redhat.com] Skickat: den 28 juni 2012 18:35 Till: Dan Kenigsberg Kopia: Karli Sjöberg; users@oVirt.org Ämne: Re: [Users] BSTRAP component='CreateConf' status='FAIL' message='Basic configuration failed to import default values' On 06/28/2012 10:41 AM, Dan Kenigsberg wrote: On Thu, Jun 28, 2012 at 04:12:15PM +0200, Karli Sjöberg wrote: 28 jun 2012 kl. 15.55 skrev Dan Kenigsberg: On Thu, Jun 28, 2012 at 12:32:27PM +0200, Karli Sjöberg wrote: Hi, I am running Fedora 17 and added the ovirt beta repository to have access to webadmin addition, since F17 only comes with CLI by default. The action in question "CreateConf" looks like: /usr/share/vdsm-bootstrap/vds_bootstrap.py def _makeConfig(self): import datetime from config import config if not os.path.exists(VDSM_CONF): logging.debug("makeConfig: generating conf.") lines = [] lines.append ("# Auto-generated by vds_bootstrap at:" + str(datetime.datetime.now()) + "\n") lines.append ("\n") lines.append ("[vars]\n") #Adding ts for the coming scirpts. lines.append ("trust_store_path = " + config.get('vars', 'trust_store_path') + "\n") lines.append ("ssl = " + config.get('vars', 'ssl') + "\n") lines.append ("\n") lines.append ("[addresses]\n") #Adding mgt port for the coming scirpts. lines.append ("management_port = " + config.get('addresses', 'management_port') + "\n") logging.debug("makeConfig: writing the following to " + VDSM_CONF) logging.debug(lines) fd, tmpName = tempfile.mkstemp() f = os.fdopen(fd, 'w') f.writelines(lines) f.close() os.chmod(tmpName, 0644) shutil.move(tmpName, VDSM_CONF) else: self.message = 'Basic configuration found, skipping this step' logging.debug(self.message) def createConf(self): """ Generate initial configuration file for VDSM. Must run after package installation! """ self.message = 'Basic configuration set' self.rc = True self.status = 'OK' try: self._makeConfig() except Exception, e: logging.error('', exc_info=True) ^^^^ the interesting stuff is written to a log file, sitting in your /tmp or a directory below it. Which module fails to be imported? /tmp/vds_bootstrap.210442.log: Thu, 28 Jun 2012 12:25:51 DEBUG Installing libjpeg 0 Thu, 28 Jun 2012 12:25:51 DEBUG ['/usr/bin/yum', '-y', 'install', 'libjpeg'] Thu, 28 Jun 2012 12:25:53 DEBUG Loaded plugins: langpacks, presto, refresh-packagekit, versionlock Package libjpeg-turbo-1.2.0-1.fc17.x86_64 already installed and latest version Nothing to do Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG ['/bin/rpm', '-q', 'libjpeg'] Thu, 28 Jun 2012 12:25:53 DEBUG package libjpeg is not installed Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 ERROR Traceback (most recent call last): File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594, in createConf self._makeConfig() File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 557, in _makeConfig from config import config ImportError: No module named config Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 ERROR createConf failed Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG **** End VDS Validation **** Which version of vdsm-bootstrap do you have installed? if it is not a 4.10.something, I suggest you upgrade. # rpm -qa | grep vdsm-bootstrap vdsm-bootstrap-4.9.3.2-0.fc17.noarch That's too old to install ovirt-3.1. Please retry with the one on the beta repo http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-b... indeed. i think the error is not about libjpeg at all, which is probably provided by libjpeg-turbo as yum install for it suggest. so just a too old bootstrap file as danken suggests, causing this which is the actual error: Traceback (most recent call last): File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594, in createConf self._makeConfig() File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 557, in _makeConfig from config import config ImportError: No module named config rpm -U http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-b... Then, after next "Re-Install" more /tmp/vds_bootstrap.470161.log Thu, 28 Jun 2012 19:39:45 DEBUG **** Start VDS Validation **** Thu, 28 Jun 2012 19:39:45 DEBUG Entered VdsValidation(subject = '172.22.8.14', random_num = 'e27aad2f-4bb2-42f1-930e-6c7bab54fb1c', rev_num = 'None', installVirtualizationService = 'True',installGlusterService = 'False') Thu, 28 Jun 2012 19:39:45 ERROR checkRegistration: Error searching for VDSM package! Traceback (most recent call last): File "/tmp/vds_bootstrap_e27aad2f-4bb2-42f1-930e-6c7bab54fb1c.py", line 228, in checkRegistration rc = bool(deployUtil.yumListPackages(VDSM_NAME)) AttributeError: 'module' object has no attribute 'yumListPackages' Thu, 28 Jun 2012 19:39:45 ERROR Unable to fetch vdsm package. Please check if host is registered to RHN, Satellite or other yum repository Thu, 28 Jun 2012 19:39:45 DEBUG Thu, 28 Jun 2012 19:39:45 ERROR checkRegistration test failed Thu, 28 Jun 2012 19:39:45 DEBUG Thu, 28 Jun 2012 19:39:45 DEBUG **** End VDS Validation **** _______________________________________________ Users mailing list Users@ovirt.org http://lists.ovirt.org/mailman/listinfo/users Sent from my Android phone. Please ignore typos.

<blockquote type=3D"cite"><div>Please rm /tmp/*py* in your host.<br>Older =
<div>/var/log/ovirt-engine/engine.log:</div><div><br></div><div><div>2012-= 06-29 08:30:06,086 INFO [org.ovirt.engine.core.vdsbroker.SetVdsStatus= VDSCommand] (ajp--0.0.0.0-8009-4) [559d5743] START, SetVdsStatusVDSCommand(= vdsId =3D 105460c0-c0ea-11e1-b737-9b694eb255f6, status=3DInstalling, nonOpe= rationalReason=3DNONE), log id: 319f47bf</div><div>2012-06-29 08:30:06,109 = INFO [org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand] (ajp--0= .0.0.0-8009-4) [559d5743] FINISH, SetVdsStatusVDSCommand, log id: 319f47bf<= /div><div>2012-06-29 08:30:06,119 INFO [org.ovirt.engine.core.bll.Ins= tallVdsCommand] (pool-3-thread-19) [25c5a6c9] Running command: InstallVdsCo= mmand internal: true. Entities affected : ID: 105460c0-c0ea-11e1-b737= -9b694eb255f6 Type: VDS</div><div>2012-06-29 08:30:06,127 INFO [org.o= virt.engine.core.bll.InstallVdsCommand] (pool-3-thread-19) [25c5a6c9] Befor= e Installation pool-3-thread-19</div><div>2012-06-29 08:30:06,130 INFO &nbs=
<div>2012-06-29 08:30:06,172 INFO [org.ovirt.engine.core.utils.hosti= nstall.HostKeyVerifier] (NioProcessor-29) SSH key fingerprint f6:4d:81:ba:a= 0:f6:c4:09:85:18:10:5f:6f:47:09:58 for host <a href=3D"http://njord.sto.slu= .se">njord.sto.slu.se</a> (172.22.8.14) has been successfully verified.</di= v><div>2012-06-29 08:30:06,248 INFO [org.ovirt.engine.core.bll.VdsIns= taller] (pool-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received= message: <BSTRAP component=3D'RHEV_INSTALL' status=3D'OK' message=3D'Co= nnected to Host 172.22.8.14 with SSH key fingerprint: f6:4d:81:ba:a0:f6:c4:= 09:85:18:10:5f:6f:47:09:58'/>. FYI. (Stage: Connecting to Host)</div><di= v>2012-06-29 08:30:06,267 INFO [org.ovirt.engine.core.bll.VdsInstalle= r] (pool-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Successfully = connected to server ssh. (Stage: Connecting to Host)</div><div>2012-06-29 0= 8:30:06,280 INFO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thr= ead-19) [25c5a6c9] Installation of 172.22.8.14. Executing installation stag= e. (Stage: Get the unique vds id)</div><div>2012-06-29 08:30:06,288 INFO &n= bsp;[org.ovirt.engine.core.utils.hostinstall.MinaInstallWrapper] (pool-3-th= read-19) Invoking /bin/echo -e `/bin/bash -c /usr/sbin/dmidecode|/bin= /awk ' /UUID/{ print $2; } ' | /usr/bin/tr '</div><div>' '_' && cat= /sys/class/net/*/address | /bin/grep -v '00:00:00:00' | /bin/sort -u | /us= r/bin/head --lines=3D1` on 172.22.8.14</div><div>2012-06-29 08:30:06,350 IN= FO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a= 6c9] Installation of 172.22.8.14. Received message: 44454C4C-3200-1052-8050= -B7C04F354431_00:15:17:36:60:4c</div><div>. FYI. (Stage: Get the unique vds= id)</div><div>2012-06-29 08:30:06,368 INFO [org.ovirt.engine.core.bl= l.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. = Assigning unique id 44454C4C-3200-1052-8050-B7C04F354431_00:15:17:36:60:4c = to Host. (Stage: Get the unique vds id)</div><div>2012-06-29 08:30:06,372 I= NFO [org.ovirt.engine.core.utils.hostinstall.MinaInstallWrapper] (poo= l-3-thread-19) RunSSHCommand returns true</div><div>2012-06-29 08:30:06,375= INFO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25= c5a6c9] Installation of 172.22.8.14. Executing installation stage. (Stage: = Upload Installation script to Host)</div><div>2012-06-29 08:30:06,379 INFO = [org.ovirt.engine.core.utils.hostinstall.MinaInstallWrapper] (pool-3-=
<div>2012-06-29 08:37:08,194 INFO [org.ovirt.engine.core.bll.AutoRec= overyManager] (QuartzScheduler_Worker-2) Checking autorecoverable storage d= omains done</div><div>2012-06-29 08:37:09,021 INFO [org.ovirt.engine.= core.vdsbroker.VdsManager] (MSC service thread 1-1) Eneterd VdsManager:cons=
2012-06-29 08:37:25,404 WARN [org.ovirt.engine.core.vdsbroker.VdsMan= ager] (QuartzScheduler_Worker-30) ResourceManager::refreshVdsRunTimeInfo::F= ailed to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test,= VDS Network Error, continuing.</div><div>VDSNetworkException: </div><=
<div>VDSNetworkException: </div><div>2012-06-29 08:37:53,849 WARN &nb= sp;[org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzScheduler_Worker-78)= ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =3D 10= 5460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network Error, continuing.</=
</div></div><blockquote type=3D"cite"><div><br>Sent from my Android phone.= Please ignore typos.<br><br>-----Original Message-----<br>From: =3D?iso-88= 59-1?Q?Karli_Sj=3DF6berg?=3D [Karli.Sjoberg@slu.se]<br>Received: Thursday, = 28 Jun 2012, 21:37<br>To: Itamar Heim [iheim@redhat.com]; Dan Kenigsberg [d= anken@redhat.com]<br>CC: <a href=3D"mailto:users@oVirt.org">users@oVirt.org= </a> [users@ovirt.org]<br>Subject: Re: [Users] BSTRAP component=3D'CreateCo= nf' status=3D'FAIL' message=3D'Basic configuration failed to import default= values'<br><br>________________________________________<br>Fr=E5n: Itamar = Heim [iheim@redhat.com]<br>Skickat: den 28 juni 2012 18:35<br>Till: Dan Ken= igsberg<br>Kopia: Karli Sj=F6berg; <a href=3D"mailto:users@oVirt.org">users= @oVirt.org</a><br>=C4mne: Re: [Users] BSTRAP component=3D'CreateConf' statu= s=3D'FAIL' message=3D'Basic configuration failed to import default values'<= br><br>On 06/28/2012 10:41 AM, Dan Kenigsberg wrote:<br> On Thu, Jun 28, 20= 12 at 04:12:15PM +0200, Karli Sj=F6berg wrote:<br><br> 28 jun 2012 kl. 15.5= 5 skrev Dan Kenigsberg:<br><br> On Thu, Jun 28, 2012 at 12:32:27PM +0200, K= arli Sj=F6berg wrote:<br> Hi,<br><br> I am running Fedora 17 and added the = ovirt beta repository to have access to webadmin addition, since F17 only c= omes with CLI by default.<br><br><br><br><br><br><br> The action in questio= n "CreateConf" looks like:<br><br> /usr/share/vdsm-bootstrap/vds_bootstrap.=
--_000_0B66A4FCD6114CB889819CE39E47B72Fsluse_ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable 28 jun 2012 kl. 22.11 skrev Doron Fediuck: Please rm /tmp/*py* in your host. Older scripts may be interrupting. # rm -f /tmp/*py* # rm -f /tmp/*log* # rm -f /tmp/*tmp* "Re-Install" /var/log/ovirt-engine/engine.log: 2012-06-29 08:30:06,086 INFO [org.ovirt.engine.core.vdsbroker.SetVdsStatus= VDSCommand] (ajp--0.0.0.0-8009-4) [559d5743] START, SetVdsStatusVDSCommand(= vdsId =3D 105460c0-c0ea-11e1-b737-9b694eb255f6, status=3DInstalling, nonOpe= rationalReason=3DNONE), log id: 319f47bf 2012-06-29 08:30:06,109 INFO [org.ovirt.engine.core.vdsbroker.SetVdsStatus= VDSCommand] (ajp--0.0.0.0-8009-4) [559d5743] FINISH, SetVdsStatusVDSCommand= , log id: 319f47bf 2012-06-29 08:30:06,119 INFO [org.ovirt.engine.core.bll.InstallVdsCommand]= (pool-3-thread-19) [25c5a6c9] Running command: InstallVdsCommand internal:= true. Entities affected : ID: 105460c0-c0ea-11e1-b737-9b694eb255f6 Type: = VDS 2012-06-29 08:30:06,127 INFO [org.ovirt.engine.core.bll.InstallVdsCommand]= (pool-3-thread-19) [25c5a6c9] Before Installation pool-3-thread-19 2012-06-29 08:30:06,130 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Executing installati= on stage. (Stage: Starting Host installation) 2012-06-29 08:30:06,136 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Executing installati= on stage. (Stage: Connecting to Host) 2012-06-29 08:30:06,172 INFO [org.ovirt.engine.core.utils.hostinstall.Host= KeyVerifier] (NioProcessor-29) SSH key fingerprint f6:4d:81:ba:a0:f6:c4:09:= 85:18:10:5f:6f:47:09:58 for host njord.sto.slu.se<http://njord.sto.slu.se> = (172.22.8.14) has been successfully verified. 2012-06-29 08:30:06,248 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'RHEV_INSTALL' status=3D'OK' message=3D'Connected to Host= 172.22.8.14 with SSH key fingerprint: f6:4d:81:ba:a0:f6:c4:09:85:18:10:5f:= 6f:47:09:58'/>. FYI. (Stage: Connecting to Host) 2012-06-29 08:30:06,267 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Successfully connect= ed to server ssh. (Stage: Connecting to Host) 2012-06-29 08:30:06,280 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Executing installati= on stage. (Stage: Get the unique vds id) 2012-06-29 08:30:06,288 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) Invoking /bin/echo -e `/bin/bash -c /us= r/sbin/dmidecode|/bin/awk ' /UUID/{ print $2; } ' | /usr/bin/tr ' ' '_' && cat /sys/class/net/*/address | /bin/grep -v '00:00:00:00' | /bin/s= ort -u | /usr/bin/head --lines=3D1` on 172.22.8.14 2012-06-29 08:30:06,350 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: 44= 454C4C-3200-1052-8050-B7C04F354431_00:15:17:36:60:4c . FYI. (Stage: Get the unique vds id) 2012-06-29 08:30:06,368 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Assigning unique id = 44454C4C-3200-1052-8050-B7C04F354431_00:15:17:36:60:4c to Host. (Stage: Get= the unique vds id) 2012-06-29 08:30:06,372 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) RunSSHCommand returns true 2012-06-29 08:30:06,375 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Executing installati= on stage. (Stage: Upload Installation script to Host) 2012-06-29 08:30:06,379 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) Uploading file /usr/share/ovirt-engine/s= cripts/vds_installer.py to /tmp/vds_installer_d3fd4973-ac7b-4c8c-974a-12ccd= 70c0dd8.py on 172.22.8.14 2012-06-29 08:30:06,384 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) Uploading file /usr/share/ovirt-engine/s= cripts/vds_installer.py to /tmp/vds_installer_d3fd4973-ac7b-4c8c-974a-12ccd= 70c0dd8.py on 172.22.8.14 2012-06-29 08:30:09,926 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. successfully done sf= tp operation ( Stage: Upload Installation script to Host) 2012-06-29 08:30:09,927 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) return true 2012-06-29 08:30:09,929 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) Uploading file /tmp/firewall.conf8280102= 786114288737.tmp to /tmp/firewall.conf.d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8= on 172.22.8.14 2012-06-29 08:30:09,930 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) Uploading file /tmp/firewall.conf8280102= 786114288737.tmp to /tmp/firewall.conf.d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8= on 172.22.8.14 2012-06-29 08:30:13,405 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. successfully done sf= tp operation ( Stage: Upload Installation script to Host) 2012-06-29 08:30:13,406 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) return true 2012-06-29 08:30:13,406 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Executing installati= on stage. (Stage: Running first installation script on Host) 2012-06-29 08:30:13,407 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Sending SSH Command = chmod +x /tmp/vds_installer_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.py; /tmp/v= ds_installer_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.py -c 'ssl=3Dtrue;managem= ent_port=3D54321' -O 'slu' -t 2012-06-29T06:30:06 -f /tmp/firewall.conf.d3f= d4973-ac7b-4c8c-974a-12ccd70c0dd8 -p 80 -b http://xcp-cms.data.slu.se:80/= Components/vds/ http://xcp-cms.data.slu.se:80/Components/vds/ 172.22.8.14 d= 3fd4973-ac7b-4c8c-974a-12ccd70c0dd8 False. (Stage: Running first installati= on script on Host) 2012-06-29 08:30:13,410 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) Invoking chmod +x /tmp/vds_installer_d3f= d4973-ac7b-4c8c-974a-12ccd70c0dd8.py; /tmp/vds_installer_d3fd4973-ac7b-4c8c= -974a-12ccd70c0dd8.py -c 'ssl=3Dtrue;management_port=3D54321' -O 'slu' -t 2= 012-06-29T06:30:06 -f /tmp/firewall.conf.d3fd4973-ac7b-4c8c-974a-12ccd70c0d= d8 -p 80 -b http://xcp-cms.data.slu.se:80/Components/vds/ http://xcp-cms.= data.slu.se:80/Components/vds/ 172.22.8.14 d3fd4973-ac7b-4c8c-974a-12ccd70c= 0dd8 False on 172.22.8.14 2012-06-29 08:30:14,417 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'INSTALLER' status=3D'OK' message=3D'Test platform succee= ded'/> <BSTRAP component=3D'INSTALLER LIB' status=3D'OK' message=3D'deployUtil.py = download succeeded'/> <BSTRAP component=3D'INSTALLER' status=3D'OK' message=3D'vds_bootstrap.py d= ownload succeeded'/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:30:25,443 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'RHN_REGISTRATION' status=3D'OK' message=3D'Host properly= registered with RHN/Satellite.'/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:30:26,469 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'VDSM_MAJOR_VER' status=3D'OK' message=3D'Available VDSM = matches requirements'/> <BSTRAP component=3D'VT_SVM' status=3D'OK' processor=3D'Intel' message=3D'S= erver supports virtualization'/> <BSTRAP component=3D'OS' status=3D'OK' type=3D'FEDORA' message=3D'Supported= platform version'/> <BSTRAP component=3D'KERNEL' status=3D'OK' version=3D'0' message=3D'Skipped= kernel version check'/> <BSTRAP component=3D'REQ PACKAGES' status=3D'OK' result=3D'SDL.x86_64' mess= age=3D'SDL-1.2.14-16.fc17.x86_64 '/> <BSTRAP component=3D'REQ PACKAGES' status=3D'OK' result=3D'bridge-utils.x86= _64' message=3D'bridge-utils-1.5-3.fc17.x86_64 '/> <BSTRAP component=3D'REQ PACKAGES' status=3D'OK' result=3D'mesa-libGLU.x86_= 64' message=3D'mesa-libGLU-8.0.3-1.fc17.x86_64 '/> <BSTRAP component=3D'REQ PACKAGES' status=3D'OK' result=3D'openssl.x86_64' = message=3D'openssl-1.0.0j-1.fc17.x86_64 '/> <BSTRAP component=3D'REQ PACKAGES' status=3D'OK' result=3D'm2crypto.x86_64'= message=3D'm2crypto-0.21.1-8.fc17.x86_64 '/> <BSTRAP component=3D'REQ PACKAGES' status=3D'OK' result=3D'rsync.x86_64' me= ssage=3D'rsync-3.0.9-2.fc17.x86_64 '/> <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'qemu-kvm' messag= e=3D'qemu-kvm-1.0-17.fc17.x86_64 '/> <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'qemu-kvm-tools' = message=3D'qemu-kvm-tools-1.0-17.fc17.x86_64 '/> <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'vdsm' message=3D= 'vdsm-4.10.0-2.fc17.x86_64 '/> <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'vdsm-cli' messag= e=3D'vdsm-cli-4.10.0-2.fc17.noarch '/> <BSTRAP component=3D'VDS PACKAGES' status=3D'WARN' result=3D'libjpeg' messa= ge=3D'package libjpeg is not installed '/> <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'spice-server' me= ssage=3D'spice-server-0.10.1-2.fc17.x86_64 '/> <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'pixman' message= =3D'pixman-0.24.4-2.fc17.x86_64 '/> <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'seabios' message= =3D'seabios-1.7.0-1.fc17.x86_64 '/> <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'qemu-img' messag= e=3D'qemu-img-1.0-17.fc17.x86_64 '/> <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'fence-agents' me= ssage=3D'fence-agents-3.1.8-1.fc17.x86_64 '/> <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'libselinux-pytho= n' message=3D'libselinux-python-2.1.10-3.fc17.x86_64 '/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:30:40,637 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'qemu-kvm' message= =3D'qemu-kvm-1.0-17.fc17.x86_64 '/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:30:43,663 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'qemu-kvm-tools' me= ssage=3D'qemu-kvm-tools-1.0-17.fc17.x86_64 '/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:30:46,675 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'vdsm' message=3D'v= dsm-4.10.0-2.fc17.x86_64 '/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:30:49,701 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'vdsm-cli' message= =3D'vdsm-cli-4.10.0-2.fc17.noarch '/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:30:52,737 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'spice-server' mess= age=3D'spice-server-0.10.1-2.fc17.x86_64 '/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:30:55,776 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'pixman' message=3D= 'pixman-0.24.4-2.fc17.x86_64 '/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:30:58,803 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'seabios' message= =3D'seabios-1.7.0-1.fc17.x86_64 '/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:31:01,842 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'qemu-img' message= =3D'qemu-img-1.0-17.fc17.x86_64 '/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:31:04,865 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'fence-agents' mess= age=3D'fence-agents-3.1.8-1.fc17.x86_64 '/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:31:07,894 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'libselinux-python'= message=3D'libselinux-python-2.1.10-3.fc17.x86_64 '/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:31:08,919 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'libjpeg' message= =3D'package libjpeg is not installed '/> <BSTRAP component=3D'CreateConf' status=3D'OK' message=3D'Basic configurati= on found, skipping this step'/> <BSTRAP component=3D'CheckLocalHostname' status=3D'OK' message=3D'Local hos= tname is correct.'/> <BSTRAP component=3D'SetNetworking' status=3D'OK' message=3D'Bridge managem= ent already exists. Skipping bridge creation.'/> <BSTRAP component=3D'SetSSHAccess' status=3D'OK' message=3D'SUCCESS'/> <BSTRAP component=3D'Firewall' status=3D'OK' message=3D'overridden firewall= successfully'/> . FYI. (Stage: Running first installation script on Host) 2012-06-29 08:30:16,551 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'SET_SYSTEM_TIME' status=3D'OK' message=3D'setSystemTime = ended successfully'/> <BSTRAP component=3D'VerifyServices' status=3D'OK' message=3D'Needed servic= es set'/> <BSTRAP component=3D'Encryption setup' status=3D'OK' message=3D'Ended succe= ssfully'/> <BSTRAP component=3D'RHEV_INSTALL' status=3D'OK'/> . Stage completed. (Stage: Running first installation script on Host) 2012-06-29 08:30:16,571 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) RunSSHCommand returns true 2012-06-29 08:30:16,572 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] RunScript ended:true 2012-06-29 08:30:16,572 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Executing installati= on stage. (Stage: Downloading certificate request from Host) 2012-06-29 08:30:16,574 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) Downloading file /tmp/cert_d3fd4973-ac7b= -4c8c-974a-12ccd70c0dd8.req from 172.22.8.14 to /etc/pki/ovirt-engine/reque= sts/cert_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.req 2012-06-29 08:30:20,308 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. successfully done sf= tp operation ( Stage: Downloading certificate request from Host) 2012-06-29 08:30:20,309 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) return true 2012-06-29 08:30:20,309 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] DownloadCertificateRequest ended:true 2012-06-29 08:30:20,311 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Executing installati= on stage. (Stage: Sign certificate request and generate certificate) 2012-06-29 08:30:21,316 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] SignCertificateRequest ended:true 2012-06-29 08:30:21,317 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Executing installati= on stage. (Stage: Upload signed sertificate to Host) 2012-06-29 08:30:21,318 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) Uploading file /etc/pki/ovirt-engine/cer= ts/172.22.8.14cert.pem to /tmp/cert_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.pe= m on 172.22.8.14 2012-06-29 08:30:21,323 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) Uploading file /etc/pki/ovirt-engine/cer= ts/172.22.8.14cert.pem to /tmp/cert_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.pe= m on 172.22.8.14 2012-06-29 08:30:25,056 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. successfully done sf= tp operation ( Stage: Upload signed sertificate to Host) 2012-06-29 08:30:25,057 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) return true 2012-06-29 08:30:25,058 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] UploadSignedCertificate ended:true 2012-06-29 08:30:25,058 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Executing installati= on stage. (Stage: Upload Cerficate Autority to Host) 2012-06-29 08:30:25,059 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) Uploading file /etc/pki/ovirt-engine/ca.= pem to /tmp/CA_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.pem on 172.22.8.14 2012-06-29 08:30:25,060 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) Uploading file /etc/pki/ovirt-engine/ca.= pem to /tmp/CA_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.pem on 172.22.8.14 2012-06-29 08:30:28,774 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. successfully done sf= tp operation ( Stage: Upload Cerficate Autority to Host) 2012-06-29 08:30:28,775 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) return true 2012-06-29 08:30:28,776 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Executing installati= on stage. (Stage: Running second installation script on Host) 2012-06-29 08:30:28,777 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Sending SSH Command = chmod +x /tmp/vds_installer_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.py; /tmp/v= ds_installer_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.py -c 'ssl=3Dtrue;managem= ent_port=3D54321' -O 'slu' -t 2012-06-29T06:30:06 -f /tmp/firewall.conf.d3f= d4973-ac7b-4c8c-974a-12ccd70c0dd8 -p 80 -b http://xcp-cms.data.slu.se:80/= Components/vds/ http://xcp-cms.data.slu.se:80/Components/vds/ 172.22.8.14 d= 3fd4973-ac7b-4c8c-974a-12ccd70c0dd8 True. (Stage: Running second installati= on script on Host) 2012-06-29 08:30:28,779 INFO [org.ovirt.engine.core.utils.hostinstall.Mina= InstallWrapper] (pool-3-thread-19) Invoking chmod +x /tmp/vds_installer_d3f= d4973-ac7b-4c8c-974a-12ccd70c0dd8.py; /tmp/vds_installer_d3fd4973-ac7b-4c8c= -974a-12ccd70c0dd8.py -c 'ssl=3Dtrue;management_port=3D54321' -O 'slu' -t 2= 012-06-29T06:30:06 -f /tmp/firewall.conf.d3fd4973-ac7b-4c8c-974a-12ccd70c0d= d8 -p 80 -b http://xcp-cms.data.slu.se:80/Components/vds/ http://xcp-cms.= data.slu.se:80/Components/vds/ 172.22.8.14 d3fd4973-ac7b-4c8c-974a-12ccd70c= 0dd8 True on 172.22.8.14 2012-06-29 08:30:29,783 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'INSTALLER' status=3D'OK' message=3D'Test platform succee= ded'/> <BSTRAP component=3D'INSTALLER LIB' status=3D'OK' message=3D'Install librar= y already exists'/> <BSTRAP component=3D'INSTALLER' status=3D'OK' message=3D'vds_bootstrap_comp= lete.py download succeeded'/> . FYI. (Stage: Running second installation script on Host) 2012-06-29 08:32:25,001 INFO [org.ovirt.engine.core.bll.VdsInstaller] (poo= l-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'instCert' status=3D'OK'/> <BSTRAP component=3D'CoreDump' status=3D'OK'/> <BSTRAP component=3D'cleanAll' status=3D'OK'/> <BSTRAP component=3D'VDS Configuration' status=3D'OK'/> <BSTRAP component=3D'RHEV_INSTALL' status=3D'OK'/> . Stage completed. (Stage: Running second installation script on Host) Reboot 2012-06-29 08:34:18,352 WARN [org.ovirt.engine.core.dal.dbbroker.DbFacadeL= ocator] (MSC service thread 1-2) /etc/engine/engine.conf file is not found.= Please check your engine installation. Default values will be used 2012-06-29 08:34:20,162 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) Start time: 6/29/12 8:34 AM 2012-06-29 08:34:20,363 WARN [org.ovirt.engine.core.utils.ConfigUtilsBase]= (MSC service thread 1-2) Could not find enum value for option: CbcCheckOnV= dsChange 2012-06-29 08:34:20,368 WARN [org.ovirt.engine.core.utils.ConfigUtilsBase]= (MSC service thread 1-2) Could not find enum value for option: CAEngineKey 2012-06-29 08:34:20,375 WARN [org.ovirt.engine.core.utils.ConfigUtilsBase]= (MSC service thread 1-2) Could not find enum value for option: MinimalETLV= ersion 2012-06-29 08:34:20,380 WARN [org.ovirt.engine.core.utils.ConfigUtilsBase]= (MSC service thread 1-2) Could not find enum value for option: SQLServerI1= 8NPrefix 2012-06-29 08:34:20,450 WARN [org.ovirt.engine.core.utils.ConfigUtilsBase]= (MSC service thread 1-2) Could not find enum value for option: ScriptsPath 2012-06-29 08:34:20,563 ERROR [org.ovirt.engine.core.engineencryptutils.Enc= ryptionUtils] (MSC service thread 1-2) Failed to decryptData must start wit= h zero 2012-06-29 08:34:20,564 ERROR [org.ovirt.engine.core.dal.dbbroker.generic.D= BConfigUtils] (MSC service thread 1-2) Failed to decrypt value for property= TruststorePass will be used encrypted value 2012-06-29 08:34:20,566 WARN [org.ovirt.engine.core.utils.ConfigUtilsBase]= (MSC service thread 1-2) Could not find enum value for option: ENGINEEARLi= b 2012-06-29 08:34:20,634 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) VDSBrokerFrontend: 6/29/12 8:34 AM 2012-06-29 08:34:20,639 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) CpuFlagsManager: 6/29/12 8:34 AM 2012-06-29 08:34:20,640 INFO [org.ovirt.engine.core.bll.AuditLogCleanupMan= ager] (MSC service thread 1-2) Setting audit clean up manager to run at: 35= 35 3 * * ? 2012-06-29 08:34:20,669 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) AuditLogCleanupManager: 6/29/12 8:34 AM 2012-06-29 08:34:20,672 INFO [org.ovirt.engine.core.bll.TagsDirector] (MSC= service thread 1-2) TagsDirector initialization 2012-06-29 08:34:20,701 INFO [org.ovirt.engine.core.bll.TagsDirector] (MSC= service thread 1-2) Tag root added to tree 2012-06-29 08:34:20,722 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) TagsDirector: 6/29/12 8:34 AM 2012-06-29 08:34:20,730 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) IsoDomainListSyncronizer: 6/29/12 8:34 AM 2012-06-29 08:34:20,741 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) InitHandlers: 6/29/12 8:34 AM 2012-06-29 08:34:20,751 WARN [org.ovirt.engine.core.utils.ErrorTranslatorI= mpl] (MSC service thread 1-2) Code VDS_FENCING_OPERATION_FAILED appears mor= e then once in string table. 2012-06-29 08:34:20,752 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) ErrorTranslator: 6/29/12 8:34 AM 2012-06-29 08:34:20,753 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) VdsErrorTranslator: 6/29/12 8:34 AM 2012-06-29 08:34:20,754 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) Mark uncompleted jobs as UNKNOWN: 6/29/12 8:34 AM 2012-06-29 08:34:20,813 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) JobRepositoryCleanupManager: 6/29/12 8:34 AM 2012-06-29 08:34:20,817 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) AutoRecoveryManager: 6/29/12 8:34 AM 2012-06-29 08:34:20,820 INFO [org.ovirt.engine.core.bll.Backend] (MSC serv= ice thread 1-2) ExecutionMessageDirector: 6/29/12 8:34 AM 2012-06-29 08:34:20,833 INFO [org.ovirt.engine.core.bll.adbroker.UsersDoma= insCacheManagerService] (MSC service thread 1-4) UsersDomainsCacheManager: = 6/29/12 8:34 AM 2012-06-29 08:34:20,832 INFO [org.ovirt.engine.core.bll.InitBackendService= sOnStartupBean] (MSC service thread 1-1) InitResourceManager: 6/29/12 8:34 = AM 2012-06-29 08:34:20,850 INFO [org.ovirt.engine.core.vdsbroker.ResourceMana= ger] (MSC service thread 1-1) ResourceManager::ResourceManager::Entered 2012-06-29 08:34:20,934 INFO [org.ovirt.engine.core.bll.adbroker.UsersDoma= insCacheManagerService] (MSC service thread 1-4) DbUserCacheManager: 6/29/1= 2 8:34 AM 2012-06-29 08:34:20,967 INFO [org.ovirt.engine.core.bll.DbUserCacheManager= ] (QuartzScheduler_Worker-1) DbUserCacheManager::refreshAllUserData() - ent= ered 2012-06-29 08:37:08,139 INFO [org.ovirt.engine.core.bll.AutoRecoveryManage= r] (QuartzScheduler_Worker-2) Checking autorecoverable hosts 2012-06-29 08:37:08,170 INFO [org.ovirt.engine.core.bll.AutoRecoveryManage= r] (QuartzScheduler_Worker-2) Autorecovering 0 hosts 2012-06-29 08:37:08,170 INFO [org.ovirt.engine.core.bll.AutoRecoveryManage= r] (QuartzScheduler_Worker-2) Checking autorecoverable hosts done 2012-06-29 08:37:08,172 INFO [org.ovirt.engine.core.bll.AutoRecoveryManage= r] (QuartzScheduler_Worker-2) Checking autorecoverable storage domains 2012-06-29 08:37:08,194 INFO [org.ovirt.engine.core.bll.AutoRecoveryManage= r] (QuartzScheduler_Worker-2) Autorecovering 0 storage domains 2012-06-29 08:37:08,194 INFO [org.ovirt.engine.core.bll.AutoRecoveryManage= r] (QuartzScheduler_Worker-2) Checking autorecoverable storage domains done 2012-06-29 08:37:09,021 INFO [org.ovirt.engine.core.vdsbroker.VdsManager] = (MSC service thread 1-1) Eneterd VdsManager:constructor 2012-06-29 08:37:09,023 INFO [org.ovirt.engine.core.vdsbroker.VdsManager] = (MSC service thread 1-1) vdsBroker(172.22.8.14,54,321) 2012-06-29 08:37:09,143 INFO [org.ovirt.engine.core.vdsbroker.ResourceMana= ger] (MSC service thread 1-1) ResourceManager::AddVds - VDS 105460c0-c0ea-1= 1e1-b737-9b694eb255f6 was added to the Resource Manager 2012-06-29 08:37:09,181 INFO [org.ovirt.engine.core.bll.AsyncTaskManager] = (MSC service thread 1-1) AsyncTaskManager: Initialization of AsyncTaskManag= er completed successfully. 2012-06-29 08:37:09,181 INFO [org.ovirt.engine.core.bll.InitBackendService= sOnStartupBean] (MSC service thread 1-1) AsyncTaskManager: 6/29/12 8:37 AM 2012-06-29 08:37:09,183 INFO [org.ovirt.engine.core.bll.InitBackendService= sOnStartupBean] (MSC service thread 1-1) VdsLoadBalancer: 6/29/12 8:37 AM 2012-06-29 08:37:09,200 INFO [org.ovirt.engine.core.bll.TimeLeasedVmPoolMa= nager] (MSC service thread 1-1) TimeLeasedVmPoolManager constractor entered 2012-06-29 08:37:09,201 INFO [org.ovirt.engine.core.bll.InitBackendService= sOnStartupBean] (MSC service thread 1-1) TimeLeasedVmPoolManager: 6/29/12 8= :37 AM 2012-06-29 08:37:09,215 INFO [org.ovirt.engine.core.bll.InitBackendService= sOnStartupBean] (MSC service thread 1-1) MacPoolManager: 6/29/12 8:37 AM 2012-06-29 08:37:11,266 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-6) ResourceManager::refreshVdsRunTimeInfo::Failed t= o refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Ne= twork Error, continuing. VDSNetworkException: 2012-06-29 08:37:13,290 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-10) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:15,310 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-14) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:17,330 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-15) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:19,349 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-21) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:21,366 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-25) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:23,385 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-26) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:25,404 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-30) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:27,422 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-34) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:29,443 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-37) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:31,462 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-41) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:33,480 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-45) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:35,675 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-46) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:37,694 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-50) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:39,717 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-57) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:41,737 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-58) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:43,754 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-62) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:45,772 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-66) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:47,789 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-67) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:49,814 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-73) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:51,831 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-77) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:53,849 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-78) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:55,865 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-82) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:57,881 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-86) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:37:59,898 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-89) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:38:01,922 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-93) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:38:03,938 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-97) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:38:05,954 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-98) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing. VDSNetworkException: 2012-06-29 08:38:07,971 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-2) ResourceManager::refreshVdsRunTimeInfo::Failed t= o refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Ne= twork Error, continuing. VDSNetworkException: 2012-06-29 08:38:09,986 ERROR [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-10) VDS::handleNetworkException Server failed to re= spond, vds_id =3D 105460c0-c0ea-11e1-b737-9b694eb255f6, vds_name =3D test,= error =3D VDSNetworkException: 2012-06-29 08:38:10,015 INFO [org.ovirt.engine.core.dal.dbbroker.auditlogh= andling.AuditLogDirector] (QuartzScheduler_Worker-10) AuditLogType: UNASSIG= NED not exist in string table 2012-06-29 08:38:10,017 INFO [org.ovirt.engine.core.dal.dbbroker.auditlogh= andling.AuditLogDirector] (QuartzScheduler_Worker-10) AuditLogType: STORAGE= _ACTIVATE_ASYNC not exist in string table 2012-06-29 08:38:10,017 INFO [org.ovirt.engine.core.dal.dbbroker.auditlogh= andling.AuditLogDirector] (QuartzScheduler_Worker-10) AuditLogType: DWH_STO= PPED not exist in string table 2012-06-29 08:38:10,018 INFO [org.ovirt.engine.core.dal.dbbroker.auditlogh= andling.AuditLogDirector] (QuartzScheduler_Worker-10) AuditLogType: DWH_STA= RTED not exist in string table 2012-06-29 08:38:10,019 INFO [org.ovirt.engine.core.dal.dbbroker.auditlogh= andling.AuditLogDirector] (QuartzScheduler_Worker-10) AuditLogType: DWH_ERR= OR not exist in string table 2012-06-29 08:38:10,137 INFO [org.ovirt.engine.core.bll.VdsEventListener] = (pool-3-thread-31) ResourceManager::vdsNotResponding entered for Host 10546= 0c0-c0ea-11e1-b737-9b694eb255f6, 172.22.8.14 2012-06-29 08:38:10,298 ERROR [org.ovirt.engine.core.bll.VdsNotRespondingTr= eatmentCommand] (pool-3-thread-31) [25e9c476] Failed to run Fence script on= vds:test, VMs moved to UnKnown instead. OK, one step forward and one step back. It seems as if the host installatio= n went through, but after reboot, I have no contact with the web user inter= face. It thinks it=B4s active: # systemctl is-active ovirt-engine.service active But I don=B4t even get to the initial portal chooser-page. /Karli Sent from my Android phone. Please ignore typos. -----Original Message----- From: =3D?iso-8859-1?Q?Karli_Sj=3DF6berg?=3D [Karli.Sjoberg@slu.se] Received: Thursday, 28 Jun 2012, 21:37 To: Itamar Heim [iheim@redhat.com]; Dan Kenigsberg [danken@redhat.com] CC: users@oVirt.org<mailto:users@oVirt.org> [users@ovirt.org] Subject: Re: [Users] BSTRAP component=3D'CreateConf' status=3D'FAIL' messag= e=3D'Basic configuration failed to import default values' ________________________________________ Fr=E5n: Itamar Heim [iheim@redhat.com] Skickat: den 28 juni 2012 18:35 Till: Dan Kenigsberg Kopia: Karli Sj=F6berg; users@oVirt.org<mailto:users@oVirt.org> =C4mne: Re: [Users] BSTRAP component=3D'CreateConf' status=3D'FAIL' message= =3D'Basic configuration failed to import default values' On 06/28/2012 10:41 AM, Dan Kenigsberg wrote: On Thu, Jun 28, 2012 at 04:12:15PM +0200, Karli Sj=F6berg wrote: 28 jun 2012 kl. 15.55 skrev Dan Kenigsberg: On Thu, Jun 28, 2012 at 12:32:27PM +0200, Karli Sj=F6berg wrote: Hi, I am running Fedora 17 and added the ovirt beta repository to have access t= o webadmin addition, since F17 only comes with CLI by default. The action in question "CreateConf" looks like: /usr/share/vdsm-bootstrap/vds_bootstrap.py def _makeConfig(self): import datetime from config import config if not os.path.exists(VDSM_CONF): logging.debug("makeConfig: generating conf.") lines =3D [] lines.append ("# Auto-generated by vds_bootstrap at:" + str(dat= etime.datetime.now()) + "\n") lines.append ("\n") lines.append ("[vars]\n") #Adding ts for the coming scirpts. lines.append ("trust_store_path =3D " + config.get('vars', 'tru= st_store_path') + "\n") lines.append ("ssl =3D " + config.get('vars', 'ssl') + "\n") lines.append ("\n") lines.append ("[addresses]\n") #Adding mgt port for the coming = scirpts. lines.append ("management_port =3D " + config.get('addresses', = 'management_port') + "\n") logging.debug("makeConfig: writing the following to " + VDSM_CO= NF) logging.debug(lines) fd, tmpName =3D tempfile.mkstemp() f =3D os.fdopen(fd, 'w') f.writelines(lines) f.close() os.chmod(tmpName, 0644) shutil.move(tmpName, VDSM_CONF) else: self.message =3D 'Basic configuration found, skipping this step= ' logging.debug(self.message) def createConf(self): """ Generate initial configuration file for VDSM. Must run after pa= ckage installation! """ self.message =3D 'Basic configuration set' self.rc =3D True self.status =3D 'OK' try: self._makeConfig() except Exception, e: logging.error('', exc_info=3DTrue) ^^^^ the interesting stuff is written to a log file, sitting in your /tmp or a directory below it. Which module fails to be imported? /tmp/vds_bootstrap.210442.log: Thu, 28 Jun 2012 12:25:51 DEBUG Installing libjpeg 0 Thu, 28 Jun 2012 12:25:51 DEBUG ['/usr/bin/yum', '-y', 'install', 'libjp= eg'] Thu, 28 Jun 2012 12:25:53 DEBUG Loaded plugins: langpacks, presto, refre= sh-packagekit, versionlock Package libjpeg-turbo-1.2.0-1.fc17.x86_64 already installed and latest vers= ion Nothing to do Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG ['/bin/rpm', '-q', 'libjpeg'] Thu, 28 Jun 2012 12:25:53 DEBUG package libjpeg is not installed Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 ERROR Traceback (most recent call last): File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line = 594, in createConf self._makeConfig() File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line = 557, in _makeConfig from config import config ImportError: No module named config Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 ERROR createConf failed Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG **** End VDS Validation **** Which version of vdsm-bootstrap do you have installed? if it is not a 4.10.something, I suggest you upgrade. # rpm -qa | grep vdsm-bootstrap vdsm-bootstrap-4.9.3.2-0.fc17.noarch That's too old to install ovirt-3.1. Please retry with the one on the beta repo http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-= bootstrap-4.10.0-3.fc17.noarch.rpm indeed. i think the error is not about libjpeg at all, which is probably provided by libjpeg-turbo as yum install for it suggest. so just a too old bootstrap file as danken suggests, causing this which is the actual error: Traceback (most recent call last): File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594, in createConf self._makeConfig() File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 557, in _makeConfig from config import config ImportError: No module named config rpm -U http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarc= h/vdsm-bootstrap-4.10.0-3.fc17.noarch.rpm Then, after next "Re-Install" more /tmp/vds_bootstrap.470161.log Thu, 28 Jun 2012 19:39:45 DEBUG **** Start VDS Validation **** Thu, 28 Jun 2012 19:39:45 DEBUG Entered VdsValidation(subject =3D '172.2= 2.8.14', random_num =3D 'e27aad2f-4bb2-42f1-930e-6c7bab54fb1c', rev_num =3D= 'None', installVirtualizationService =3D 'True',installGlusterService =3D = 'False') Thu, 28 Jun 2012 19:39:45 ERROR checkRegistration: Error searching for V= DSM package! Traceback (most recent call last): File "/tmp/vds_bootstrap_e27aad2f-4bb2-42f1-930e-6c7bab54fb1c.py", line 2= 28, in checkRegistration rc =3D bool(deployUtil.yumListPackages(VDSM_NAME)) AttributeError: 'module' object has no attribute 'yumListPackages' Thu, 28 Jun 2012 19:39:45 ERROR Unable to fetch vdsm package. Please check if host is registered to RHN, Satellite or other yum reposito= ry Thu, 28 Jun 2012 19:39:45 DEBUG Thu, 28 Jun 2012 19:39:45 ERROR checkRegistration test failed Thu, 28 Jun 2012 19:39:45 DEBUG Thu, 28 Jun 2012 19:39:45 DEBUG **** End VDS Validation **** _______________________________________________ Users mailing list Users@ovirt.org<mailto:Users@ovirt.org> http://lists.ovirt.org/mailman/listinfo/users Sent from my Android phone. Please ignore typos. Med V=E4nliga H=E4lsningar ---------------------------------------------------------------------------= ---- Karli Sj=F6berg Swedish University of Agricultural Sciences Box 7079 (Visiting Address Kron=E5sv=E4gen 8) S-750 07 Uppsala, Sweden Phone: +46-(0)18-67 15 66 karli.sjoberg@slu.se<mailto:karli.sjoberg@adm.slu.se> --_000_0B66A4FCD6114CB889819CE39E47B72Fsluse_ Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <html><head></head><body style=3D"word-wrap: break-word; -webkit-nbsp-mode:= space; -webkit-line-break: after-white-space; "><br><div><div>28 jun 2012 = kl. 22.11 skrev Doron Fediuck:</div><br class=3D"Apple-interchange-newline"= scripts may be interrupting.</div></blockquote><div><br></div># rm -f /tmp/= *py*</div><div># rm -f /tmp/*log*</div><div># rm -f /tmp/*tmp*</div><div><b= r></div><div><br></div><div>"Re-Install"</div><div><br></div><div><br></div= p;[org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] In= stallation of 172.22.8.14. Executing installation stage. (Stage: Starting H= ost installation)</div><div>2012-06-29 08:30:06,136 INFO [org.ovirt.e= ngine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Installation of = 172.22.8.14. Executing installation stage. (Stage: Connecting to Host)</div= thread-19) Uploading file /usr/share/ovirt-engine/scripts/vds_installer.py = to /tmp/vds_installer_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.py on 172.22.8.1= 4</div><div>2012-06-29 08:30:06,384 INFO [org.ovirt.engine.core.utils= .hostinstall.MinaInstallWrapper] (pool-3-thread-19) Uploading file /usr/sha= re/ovirt-engine/scripts/vds_installer.py to /tmp/vds_installer_d3fd4973-ac7= b-4c8c-974a-12ccd70c0dd8.py on 172.22.8.14</div><div>2012-06-29 08:30:09,92= 6 INFO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [2= 5c5a6c9] Installation of 172.22.8.14. successfully done sftp operation ( St= age: Upload Installation script to Host)</div><div>2012-06-29 08:30:09,927 = INFO [org.ovirt.engine.core.utils.hostinstall.MinaInstallWrapper] (po= ol-3-thread-19) return true</div><div>2012-06-29 08:30:09,929 INFO [o= rg.ovirt.engine.core.utils.hostinstall.MinaInstallWrapper] (pool-3-thread-1= 9) Uploading file /tmp/firewall.conf8280102786114288737.tmp to /tmp/firewal= l.conf.d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8 on 172.22.8.14</div><div>2012-0= 6-29 08:30:09,930 INFO [org.ovirt.engine.core.utils.hostinstall.MinaI= nstallWrapper] (pool-3-thread-19) Uploading file /tmp/firewall.conf82801027= 86114288737.tmp to /tmp/firewall.conf.d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8 = on 172.22.8.14</div><div>2012-06-29 08:30:13,405 INFO [org.ovirt.engi= ne.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Installation of 172= .22.8.14. successfully done sftp operation ( Stage: Upload Installation scr= ipt to Host)</div><div>2012-06-29 08:30:13,406 INFO [org.ovirt.engine= .core.utils.hostinstall.MinaInstallWrapper] (pool-3-thread-19) return true<= /div><div>2012-06-29 08:30:13,406 INFO [org.ovirt.engine.core.bll.Vds= Installer] (pool-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Execu= ting installation stage. (Stage: Running first installation script on Host)= </div><div>2012-06-29 08:30:13,407 INFO [org.ovirt.engine.core.bll.Vd= sInstaller] (pool-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Send= ing SSH Command chmod +x /tmp/vds_installer_d3fd4973-ac7b-4c8c-974a-12ccd70= c0dd8.py; /tmp/vds_installer_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.py -c 'ss= l=3Dtrue;management_port=3D54321' -O 'slu' -t 2012-06-29T06:30:06 -f /tmp/f= irewall.conf.d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8 -p 80 -b <a href= =3D"http://xcp-cms.data.slu.se:80/Components/vds/">http://xcp-cms.data.slu.= se:80/Components/vds/</a> <a href=3D"http://xcp-cms.data.slu.se:80/Componen= ts/vds/">http://xcp-cms.data.slu.se:80/Components/vds/</a> 172.22.8.14 d3fd= 4973-ac7b-4c8c-974a-12ccd70c0dd8 False. (Stage: Running first installation = script on Host)</div><div>2012-06-29 08:30:13,410 INFO [org.ovirt.eng= ine.core.utils.hostinstall.MinaInstallWrapper] (pool-3-thread-19) Invoking = chmod +x /tmp/vds_installer_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.py; /tmp/v= ds_installer_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.py -c 'ssl=3Dtrue;managem= ent_port=3D54321' -O 'slu' -t 2012-06-29T06:30:06 -f /tmp/firewall.conf.d3f= d4973-ac7b-4c8c-974a-12ccd70c0dd8 -p 80 -b <a href=3D"http://xcp-cms= .data.slu.se:80/Components/vds/">http://xcp-cms.data.slu.se:80/Components/v= ds/</a> <a href=3D"http://xcp-cms.data.slu.se:80/Components/vds/">http://xc= p-cms.data.slu.se:80/Components/vds/</a> 172.22.8.14 d3fd4973-ac7b-4c8c-974= a-12ccd70c0dd8 False on 172.22.8.14</div><div>2012-06-29 08:30:14,417 INFO = [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9= ] Installation of 172.22.8.14. Received message: <BSTRAP component=3D'IN= STALLER' status=3D'OK' message=3D'Test platform succeeded'/></div><div>&= lt;BSTRAP component=3D'INSTALLER LIB' status=3D'OK' message=3D'deployUtil.p= y download succeeded'/></div><div><BSTRAP component=3D'INSTALLER' sta= tus=3D'OK' message=3D'vds_bootstrap.py download succeeded'/></div><div>.= FYI. (Stage: Running first installation script on Host)</div><div>2012-06-= 29 08:30:25,443 INFO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3= -thread-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <B= STRAP component=3D'RHN_REGISTRATION' status=3D'OK' message=3D'Host properly= registered with RHN/Satellite.'/></div><div>. FYI. (Stage: Running firs= t installation script on Host)</div><div>2012-06-29 08:30:26,469 INFO  = ;[org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Ins= tallation of 172.22.8.14. Received message: <BSTRAP component=3D'VDSM_MA= JOR_VER' status=3D'OK' message=3D'Available VDSM matches requirements'/>= </div><div><BSTRAP component=3D'VT_SVM' status=3D'OK' processor=3D'Intel= ' message=3D'Server supports virtualization'/></div><div><BSTRAP comp= onent=3D'OS' status=3D'OK' type=3D'FEDORA' message=3D'Supported platform ve= rsion'/></div><div><BSTRAP component=3D'KERNEL' status=3D'OK' version= =3D'0' message=3D'Skipped kernel version check'/></div><div><BSTRAP c= omponent=3D'REQ PACKAGES' status=3D'OK' result=3D'SDL.x86_64' message=3D'SD= L-1.2.14-16.fc17.x86_64 '/></div><div><BSTRAP component=3D'REQ PACKAG= ES' status=3D'OK' result=3D'bridge-utils.x86_64' message=3D'bridge-utils-1.= 5-3.fc17.x86_64 '/></div><div><BSTRAP component=3D'REQ PACKAGES' stat= us=3D'OK' result=3D'mesa-libGLU.x86_64' message=3D'mesa-libGLU-8.0.3-1.fc17= .x86_64 '/></div><div><BSTRAP component=3D'REQ PACKAGES' status=3D'OK= ' result=3D'openssl.x86_64' message=3D'openssl-1.0.0j-1.fc17.x86_64 '/><= /div><div><BSTRAP component=3D'REQ PACKAGES' status=3D'OK' result=3D'm2c= rypto.x86_64' message=3D'm2crypto-0.21.1-8.fc17.x86_64 '/></div><div><= ;BSTRAP component=3D'REQ PACKAGES' status=3D'OK' result=3D'rsync.x86_64' me= ssage=3D'rsync-3.0.9-2.fc17.x86_64 '/></div><div><BSTRAP component=3D= 'VDS PACKAGES' status=3D'OK' result=3D'qemu-kvm' message=3D'qemu-kvm-1.0-17= .fc17.x86_64 '/></div><div><BSTRAP component=3D'VDS PACKAGES' status= =3D'OK' result=3D'qemu-kvm-tools' message=3D'qemu-kvm-tools-1.0-17.fc17.x86= _64 '/></div><div><BSTRAP component=3D'VDS PACKAGES' status=3D'OK' re= sult=3D'vdsm' message=3D'vdsm-4.10.0-2.fc17.x86_64 '/></div><div><BST= RAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'vdsm-cli' message=3D= 'vdsm-cli-4.10.0-2.fc17.noarch '/></div><div><BSTRAP component=3D'VDS= PACKAGES' status=3D'WARN' result=3D'libjpeg' message=3D'package libjpeg is= not installed '/></div><div><BSTRAP component=3D'VDS PACKAGES' statu= s=3D'OK' result=3D'spice-server' message=3D'spice-server-0.10.1-2.fc17.x86_= 64 '/></div><div><BSTRAP component=3D'VDS PACKAGES' status=3D'OK' res= ult=3D'pixman' message=3D'pixman-0.24.4-2.fc17.x86_64 '/></div><div><= BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'seabios' message= =3D'seabios-1.7.0-1.fc17.x86_64 '/></div><div><BSTRAP component=3D'VD= S PACKAGES' status=3D'OK' result=3D'qemu-img' message=3D'qemu-img-1.0-17.fc= 17.x86_64 '/></div><div><BSTRAP component=3D'VDS PACKAGES' status=3D'= OK' result=3D'fence-agents' message=3D'fence-agents-3.1.8-1.fc17.x86_64 '/&= gt;</div><div><BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D= 'libselinux-python' message=3D'libselinux-python-2.1.10-3.fc17.x86_64 '/>= ;</div><div>. FYI. (Stage: Running first installation script on Host)</div>= <div>2012-06-29 08:30:40,637 INFO [org.ovirt.engine.core.bll.VdsInsta= ller] (pool-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Received m= essage: <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'qemu-= kvm' message=3D'qemu-kvm-1.0-17.fc17.x86_64 '/></div><div>. FYI. (Stage:= Running first installation script on Host)</div><div>2012-06-29 08:30:43,6= 63 INFO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [= 25c5a6c9] Installation of 172.22.8.14. Received message: <BSTRAP compone= nt=3D'VDS PACKAGES' status=3D'OK' result=3D'qemu-kvm-tools' message=3D'qemu= -kvm-tools-1.0-17.fc17.x86_64 '/></div><div>. FYI. (Stage: Running first= installation script on Host)</div><div>2012-06-29 08:30:46,675 INFO = [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Inst= allation of 172.22.8.14. Received message: <BSTRAP component=3D'VDS PACK= AGES' status=3D'OK' result=3D'vdsm' message=3D'vdsm-4.10.0-2.fc17.x86_64 '/= ></div><div>. FYI. (Stage: Running first installation script on Host)</d= iv><div>2012-06-29 08:30:49,701 INFO [org.ovirt.engine.core.bll.VdsIn= staller] (pool-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. Receive= d message: <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result=3D'vd= sm-cli' message=3D'vdsm-cli-4.10.0-2.fc17.noarch '/></div><div>. FYI. (S= tage: Running first installation script on Host)</div><div>2012-06-29 08:30= :52,737 INFO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-= 19) [25c5a6c9] Installation of 172.22.8.14. Received message: <BSTRAP co= mponent=3D'VDS PACKAGES' status=3D'OK' result=3D'spice-server' message=3D's= pice-server-0.10.1-2.fc17.x86_64 '/></div><div>. FYI. (Stage: Running fi= rst installation script on Host)</div><div>2012-06-29 08:30:55,776 INFO &nb= sp;[org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] I= nstallation of 172.22.8.14. Received message: <BSTRAP component=3D'VDS P= ACKAGES' status=3D'OK' result=3D'pixman' message=3D'pixman-0.24.4-2.fc17.x8= 6_64 '/></div><div>. FYI. (Stage: Running first installation script on H= ost)</div><div>2012-06-29 08:30:58,803 INFO [org.ovirt.engine.core.bl= l.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. = Received message: <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' resul= t=3D'seabios' message=3D'seabios-1.7.0-1.fc17.x86_64 '/></div><div>. FYI= . (Stage: Running first installation script on Host)</div><div>2012-06-29 0= 8:31:01,842 INFO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thr= ead-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <BSTRA= P component=3D'VDS PACKAGES' status=3D'OK' result=3D'qemu-img' message=3D'q= emu-img-1.0-17.fc17.x86_64 '/></div><div>. FYI. (Stage: Running first in= stallation script on Host)</div><div>2012-06-29 08:31:04,865 INFO [or= g.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Install= ation of 172.22.8.14. Received message: <BSTRAP component=3D'VDS PACKAGE= S' status=3D'OK' result=3D'fence-agents' message=3D'fence-agents-3.1.8-1.fc= 17.x86_64 '/></div><div>. FYI. (Stage: Running first installation script= on Host)</div><div>2012-06-29 08:31:07,894 INFO [org.ovirt.engine.co= re.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Installation of 172.22.8= .14. Received message: <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' = result=3D'libselinux-python' message=3D'libselinux-python-2.1.10-3.fc17.x86= _64 '/></div><div>. FYI. (Stage: Running first installation script on Ho= st)</div><div>2012-06-29 08:31:08,919 INFO [org.ovirt.engine.core.bll= .VdsInstaller] (pool-3-thread-19) [25c5a6c9] Installation of 172.22.8.14. R= eceived message: <BSTRAP component=3D'VDS PACKAGES' status=3D'OK' result= =3D'libjpeg' message=3D'package libjpeg is not installed '/></div><div>&= lt;BSTRAP component=3D'CreateConf' status=3D'OK' message=3D'Basic configura= tion found, skipping this step'/></div><div><BSTRAP component=3D'Chec= kLocalHostname' status=3D'OK' message=3D'Local hostname is correct.'/></= div><div><BSTRAP component=3D'SetNetworking' status=3D'OK' message=3D'Br= idge management already exists. Skipping bridge creation.'/></div><div>&= lt;BSTRAP component=3D'SetSSHAccess' status=3D'OK' message=3D'SUCCESS'/>= </div><div><BSTRAP component=3D'Firewall' status=3D'OK' message=3D'overr= idden firewall successfully'/></div><div>. FYI. (Stage: Running first in= stallation script on Host)</div><div>2012-06-29 08:30:16,551 INFO [or= g.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Install= ation of 172.22.8.14. Received message: <BSTRAP component=3D'SET_SYSTEM_= TIME' status=3D'OK' message=3D'setSystemTime ended successfully'/></div>= <div><BSTRAP component=3D'VerifyServices' status=3D'OK' message=3D'Neede= d services set'/></div><div><BSTRAP component=3D'Encryption setup' st= atus=3D'OK' message=3D'Ended successfully'/></div><div><BSTRAP compon= ent=3D'RHEV_INSTALL' status=3D'OK'/></div><div>. Stage completed. (Stage= : Running first installation script on Host)</div><div>2012-06-29 08:30:16,= 571 INFO [org.ovirt.engine.core.utils.hostinstall.MinaInstallWrapper]= (pool-3-thread-19) RunSSHCommand returns true</div><div>2012-06-29 08:30:1= 6,572 INFO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19= ) [25c5a6c9] RunScript ended:true</div><div>2012-06-29 08:30:16,572 I= NFO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5= a6c9] Installation of 172.22.8.14. Executing installation stage. (Stage: Do= wnloading certificate request from Host)</div><div>2012-06-29 08:30:16,574 = INFO [org.ovirt.engine.core.utils.hostinstall.MinaInstallWrapper] (po= ol-3-thread-19) Downloading file /tmp/cert_d3fd4973-ac7b-4c8c-974a-12ccd70c= 0dd8.req from 172.22.8.14 to /etc/pki/ovirt-engine/requests/cert_d3fd4973-a= c7b-4c8c-974a-12ccd70c0dd8.req</div><div>2012-06-29 08:30:20,308 INFO  = ;[org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Ins= tallation of 172.22.8.14. successfully done sftp operation ( Stage: Downloa= ding certificate request from Host)</div><div>2012-06-29 08:30:20,309 INFO = [org.ovirt.engine.core.utils.hostinstall.MinaInstallWrapper] (pool-3-= thread-19) return true</div><div>2012-06-29 08:30:20,309 INFO [org.ov= irt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Downl= oadCertificateRequest ended:true</div><div>2012-06-29 08:30:20,311 INFO &nb= sp;[org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] I= nstallation of 172.22.8.14. Executing installation stage. (Stage: Sign cert= ificate request and generate certificate)</div><div>2012-06-29 08:30:21,316= INFO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25= c5a6c9] SignCertificateRequest ended:true</div><div>2012-06-29 08:30:= 21,317 INFO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-1= 9) [25c5a6c9] Installation of 172.22.8.14. Executing installation stage. (S= tage: Upload signed sertificate to Host)</div><div>2012-06-29 08:30:21,318 = INFO [org.ovirt.engine.core.utils.hostinstall.MinaInstallWrapper] (po= ol-3-thread-19) Uploading file /etc/pki/ovirt-engine/certs/172.22.8.14cert.= pem to /tmp/cert_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.pem on 172.22.8.14</d= iv><div>2012-06-29 08:30:21,323 INFO [org.ovirt.engine.core.utils.hos= tinstall.MinaInstallWrapper] (pool-3-thread-19) Uploading file /etc/pki/ovi= rt-engine/certs/172.22.8.14cert.pem to /tmp/cert_d3fd4973-ac7b-4c8c-974a-12= ccd70c0dd8.pem on 172.22.8.14</div><div>2012-06-29 08:30:25,056 INFO = [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Inst= allation of 172.22.8.14. successfully done sftp operation ( Stage: Upload s= igned sertificate to Host)</div><div>2012-06-29 08:30:25,057 INFO [or= g.ovirt.engine.core.utils.hostinstall.MinaInstallWrapper] (pool-3-thread-19= ) return true</div><div>2012-06-29 08:30:25,058 INFO [org.ovirt.engin= e.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] UploadSignedCe= rtificate ended:true</div><div>2012-06-29 08:30:25,058 INFO [org.ovir= t.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Installation = of 172.22.8.14. Executing installation stage. (Stage: Upload Cerficate Auto= rity to Host)</div><div>2012-06-29 08:30:25,059 INFO [org.ovirt.engin= e.core.utils.hostinstall.MinaInstallWrapper] (pool-3-thread-19) Uploading f= ile /etc/pki/ovirt-engine/ca.pem to /tmp/CA_d3fd4973-ac7b-4c8c-974a-12ccd70= c0dd8.pem on 172.22.8.14</div><div>2012-06-29 08:30:25,060 INFO [org.= ovirt.engine.core.utils.hostinstall.MinaInstallWrapper] (pool-3-thread-19) = Uploading file /etc/pki/ovirt-engine/ca.pem to /tmp/CA_d3fd4973-ac7b-4c8c-9= 74a-12ccd70c0dd8.pem on 172.22.8.14</div><div>2012-06-29 08:30:28,774 INFO = [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9= ] Installation of 172.22.8.14. successfully done sftp operation ( Stage: Up= load Cerficate Autority to Host)</div><div>2012-06-29 08:30:28,775 INFO &nb= sp;[org.ovirt.engine.core.utils.hostinstall.MinaInstallWrapper] (pool-3-thr= ead-19) return true</div><div>2012-06-29 08:30:28,776 INFO [org.ovirt= .engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Installation o= f 172.22.8.14. Executing installation stage. (Stage: Running second install= ation script on Host)</div><div>2012-06-29 08:30:28,777 INFO [org.ovi= rt.engine.core.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Installation= of 172.22.8.14. Sending SSH Command chmod +x /tmp/vds_installer_d3fd4973-a= c7b-4c8c-974a-12ccd70c0dd8.py; /tmp/vds_installer_d3fd4973-ac7b-4c8c-974a-1= 2ccd70c0dd8.py -c 'ssl=3Dtrue;management_port=3D54321' -O 'slu' -t 2012-06-= 29T06:30:06 -f /tmp/firewall.conf.d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8 -p 8= 0 -b <a href=3D"http://xcp-cms.data.slu.se:80/Components/vds/">http:= //xcp-cms.data.slu.se:80/Components/vds/</a> <a href=3D"http://xcp-cms.data= .slu.se:80/Components/vds/">http://xcp-cms.data.slu.se:80/Components/vds/</= a> 172.22.8.14 d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8 True. (Stage: Running s= econd installation script on Host)</div><div>2012-06-29 08:30:28,779 INFO &= nbsp;[org.ovirt.engine.core.utils.hostinstall.MinaInstallWrapper] (pool-3-t= hread-19) Invoking chmod +x /tmp/vds_installer_d3fd4973-ac7b-4c8c-974a-12cc= d70c0dd8.py; /tmp/vds_installer_d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8.py -c = 'ssl=3Dtrue;management_port=3D54321' -O 'slu' -t 2012-06-29T06:30:06 -f /tm= p/firewall.conf.d3fd4973-ac7b-4c8c-974a-12ccd70c0dd8 -p 80 -b <a hre= f=3D"http://xcp-cms.data.slu.se:80/Components/vds/">http://xcp-cms.data.slu= .se:80/Components/vds/</a> <a href=3D"http://xcp-cms.data.slu.se:80/Compone= nts/vds/">http://xcp-cms.data.slu.se:80/Components/vds/</a> 172.22.8.14 d3f= d4973-ac7b-4c8c-974a-12ccd70c0dd8 True on 172.22.8.14</div><div>2012-06-29 = 08:30:29,783 INFO [org.ovirt.engine.core.bll.VdsInstaller] (pool-3-th= read-19) [25c5a6c9] Installation of 172.22.8.14. Received message: <BSTR= AP component=3D'INSTALLER' status=3D'OK' message=3D'Test platform succeeded= '/></div><div><BSTRAP component=3D'INSTALLER LIB' status=3D'OK' messa= ge=3D'Install library already exists'/></div><div><BSTRAP component= =3D'INSTALLER' status=3D'OK' message=3D'vds_bootstrap_complete.py download = succeeded'/></div><div>. FYI. (Stage: Running second installation script= on Host)</div><div>2012-06-29 08:32:25,001 INFO [org.ovirt.engine.co= re.bll.VdsInstaller] (pool-3-thread-19) [25c5a6c9] Installation of 172.22.8= .14. Received message: <BSTRAP component=3D'instCert' status=3D'OK'/>= </div><div><BSTRAP component=3D'CoreDump' status=3D'OK'/></div><div>&= lt;BSTRAP component=3D'cleanAll' status=3D'OK'/></div><div><BSTRAP co= mponent=3D'VDS Configuration' status=3D'OK'/></div><div><BSTRAP compo= nent=3D'RHEV_INSTALL' status=3D'OK'/></div><div>. Stage completed. (Stag= e: Running second installation script on Host)</div><div><br></div><div>Reb= oot</div><div><br></div><div><div>2012-06-29 08:34:18,352 WARN [org.o= virt.engine.core.dal.dbbroker.DbFacadeLocator] (MSC service thread 1-2) /et= c/engine/engine.conf file is not found. Please check your engine installati= on. Default values will be used</div><div>2012-06-29 08:34:20,162 INFO &nbs= p;[org.ovirt.engine.core.bll.Backend] (MSC service thread 1-2) Start time: = 6/29/12 8:34 AM</div><div>2012-06-29 08:34:20,363 WARN [org.ovirt.eng= ine.core.utils.ConfigUtilsBase] (MSC service thread 1-2) Could not find enu= m value for option: CbcCheckOnVdsChange</div><div>2012-06-29 08:34:20,368 W= ARN [org.ovirt.engine.core.utils.ConfigUtilsBase] (MSC service thread= 1-2) Could not find enum value for option: CAEngineKey</div><div>2012-06-2= 9 08:34:20,375 WARN [org.ovirt.engine.core.utils.ConfigUtilsBase] (MS= C service thread 1-2) Could not find enum value for option: MinimalETLVersi= on</div><div>2012-06-29 08:34:20,380 WARN [org.ovirt.engine.core.util= s.ConfigUtilsBase] (MSC service thread 1-2) Could not find enum value for o= ption: SQLServerI18NPrefix</div><div>2012-06-29 08:34:20,450 WARN [or= g.ovirt.engine.core.utils.ConfigUtilsBase] (MSC service thread 1-2) Could n= ot find enum value for option: ScriptsPath</div><div>2012-06-29 08:34:20,56= 3 ERROR [org.ovirt.engine.core.engineencryptutils.EncryptionUtils] (MSC ser= vice thread 1-2) Failed to decryptData must start with zero</div><div>2012-= 06-29 08:34:20,564 ERROR [org.ovirt.engine.core.dal.dbbroker.generic.DBConf= igUtils] (MSC service thread 1-2) Failed to decrypt value for property Trus= tstorePass will be used encrypted value</div><div>2012-06-29 08:34:20,566 W= ARN [org.ovirt.engine.core.utils.ConfigUtilsBase] (MSC service thread= 1-2) Could not find enum value for option: ENGINEEARLib</div><div>2012-06-= 29 08:34:20,634 INFO [org.ovirt.engine.core.bll.Backend] (MSC service= thread 1-2) VDSBrokerFrontend: 6/29/12 8:34 AM</div><div>2012-06-29 08:34:= 20,639 INFO [org.ovirt.engine.core.bll.Backend] (MSC service thread 1= -2) CpuFlagsManager: 6/29/12 8:34 AM</div><div>2012-06-29 08:34:20,640 INFO= [org.ovirt.engine.core.bll.AuditLogCleanupManager] (MSC service thre= ad 1-2) Setting audit clean up manager to run at: 35 35 3 * * ?</div><div>2= 012-06-29 08:34:20,669 INFO [org.ovirt.engine.core.bll.Backend] (MSC = service thread 1-2) AuditLogCleanupManager: 6/29/12 8:34 AM</div><div>2012-= 06-29 08:34:20,672 INFO [org.ovirt.engine.core.bll.TagsDirector] (MSC= service thread 1-2) TagsDirector initialization</div><div>2012-06-29 08:34= :20,701 INFO [org.ovirt.engine.core.bll.TagsDirector] (MSC service th= read 1-2) Tag root added to tree</div><div>2012-06-29 08:34:20,722 INFO &nb= sp;[org.ovirt.engine.core.bll.Backend] (MSC service thread 1-2) TagsDirecto= r: 6/29/12 8:34 AM</div><div>2012-06-29 08:34:20,730 INFO [org.ovirt.= engine.core.bll.Backend] (MSC service thread 1-2) IsoDomainListSyncronizer:= 6/29/12 8:34 AM</div><div>2012-06-29 08:34:20,741 INFO [org.ovirt.en= gine.core.bll.Backend] (MSC service thread 1-2) InitHandlers: 6/29/12 8:34 = AM</div><div>2012-06-29 08:34:20,751 WARN [org.ovirt.engine.core.util= s.ErrorTranslatorImpl] (MSC service thread 1-2) Code VDS_FENCING_OPERATION_= FAILED appears more then once in string table.</div><div>2012-06-29 08:34:2= 0,752 INFO [org.ovirt.engine.core.bll.Backend] (MSC service thread 1-= 2) ErrorTranslator: 6/29/12 8:34 AM</div><div>2012-06-29 08:34:20,753 INFO = [org.ovirt.engine.core.bll.Backend] (MSC service thread 1-2) VdsError= Translator: 6/29/12 8:34 AM</div><div>2012-06-29 08:34:20,754 INFO [o= rg.ovirt.engine.core.bll.Backend] (MSC service thread 1-2) Mark uncompleted= jobs as UNKNOWN: 6/29/12 8:34 AM</div><div>2012-06-29 08:34:20,813 INFO &n= bsp;[org.ovirt.engine.core.bll.Backend] (MSC service thread 1-2) JobReposit= oryCleanupManager: 6/29/12 8:34 AM</div><div>2012-06-29 08:34:20,817 INFO &= nbsp;[org.ovirt.engine.core.bll.Backend] (MSC service thread 1-2) AutoRecov= eryManager: 6/29/12 8:34 AM</div><div>2012-06-29 08:34:20,820 INFO [o= rg.ovirt.engine.core.bll.Backend] (MSC service thread 1-2) ExecutionMessage= Director: 6/29/12 8:34 AM</div><div>2012-06-29 08:34:20,833 INFO [org= .ovirt.engine.core.bll.adbroker.UsersDomainsCacheManagerService] (MSC servi= ce thread 1-4) UsersDomainsCacheManager: 6/29/12 8:34 AM</div><div>2012-06-= 29 08:34:20,832 INFO [org.ovirt.engine.core.bll.InitBackendServicesOn= StartupBean] (MSC service thread 1-1) InitResourceManager: 6/29/12 8:34 AM<= /div><div>2012-06-29 08:34:20,850 INFO [org.ovirt.engine.core.vdsbrok= er.ResourceManager] (MSC service thread 1-1) ResourceManager::ResourceManag= er::Entered</div><div>2012-06-29 08:34:20,934 INFO [org.ovirt.engine.= core.bll.adbroker.UsersDomainsCacheManagerService] (MSC service thread 1-4)= DbUserCacheManager: 6/29/12 8:34 AM</div><div>2012-06-29 08:34:20,967 INFO= [org.ovirt.engine.core.bll.DbUserCacheManager] (QuartzScheduler_Work= er-1) DbUserCacheManager::refreshAllUserData() - entered</div><div>2012-06-= 29 08:37:08,139 INFO [org.ovirt.engine.core.bll.AutoRecoveryManager] = (QuartzScheduler_Worker-2) Checking autorecoverable hosts</div><div>2012-06= -29 08:37:08,170 INFO [org.ovirt.engine.core.bll.AutoRecoveryManager]= (QuartzScheduler_Worker-2) Autorecovering 0 hosts</div><div>2012-06-29 08:= 37:08,170 INFO [org.ovirt.engine.core.bll.AutoRecoveryManager] (Quart= zScheduler_Worker-2) Checking autorecoverable hosts done</div><div>2012-06-= 29 08:37:08,172 INFO [org.ovirt.engine.core.bll.AutoRecoveryManager] = (QuartzScheduler_Worker-2) Checking autorecoverable storage domains</div><d= iv>2012-06-29 08:37:08,194 INFO [org.ovirt.engine.core.bll.AutoRecove= ryManager] (QuartzScheduler_Worker-2) Autorecovering 0 storage domains</div= tructor</div><div>2012-06-29 08:37:09,023 INFO [org.ovirt.engine.core= .vdsbroker.VdsManager] (MSC service thread 1-1) vdsBroker(172.22.8.14,54,32= 1)</div><div>2012-06-29 08:37:09,143 INFO [org.ovirt.engine.core.vdsb= roker.ResourceManager] (MSC service thread 1-1) ResourceManager::AddVds - V= DS 105460c0-c0ea-11e1-b737-9b694eb255f6 was added to the Resource Manager</= div><div>2012-06-29 08:37:09,181 INFO [org.ovirt.engine.core.bll.Asyn= cTaskManager] (MSC service thread 1-1) AsyncTaskManager: Initialization of = AsyncTaskManager completed successfully.</div><div>2012-06-29 08:37:09,181 = INFO [org.ovirt.engine.core.bll.InitBackendServicesOnStartupBean] (MS= C service thread 1-1) AsyncTaskManager: 6/29/12 8:37 AM</div><div>2012-06-2= 9 08:37:09,183 INFO [org.ovirt.engine.core.bll.InitBackendServicesOnS= tartupBean] (MSC service thread 1-1) VdsLoadBalancer: 6/29/12 8:37 AM</div>= <div>2012-06-29 08:37:09,200 INFO [org.ovirt.engine.core.bll.TimeLeas= edVmPoolManager] (MSC service thread 1-1) TimeLeasedVmPoolManager constract= or entered</div><div>2012-06-29 08:37:09,201 INFO [org.ovirt.engine.c= ore.bll.InitBackendServicesOnStartupBean] (MSC service thread 1-1) TimeLeas= edVmPoolManager: 6/29/12 8:37 AM</div><div>2012-06-29 08:37:09,215 INFO &nb= sp;[org.ovirt.engine.core.bll.InitBackendServicesOnStartupBean] (MSC servic= e thread 1-1) MacPoolManager: 6/29/12 8:37 AM</div><div>2012-06-29 08:37:11= ,266 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzSchedul= er_Worker-6) ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS = , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network Error, c= ontinuing.</div><div>VDSNetworkException: </div><div>2012-06-29 08:37:= 13,290 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzSched= uler_Worker-10) ResourceManager::refreshVdsRunTimeInfo::Failed to refresh V= DS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network Error= , continuing.</div><div>VDSNetworkException: </div><div>2012-06-29 08:= 37:15,310 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzSc= heduler_Worker-14) ResourceManager::refreshVdsRunTimeInfo::Failed to refres= h VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network Er= ror, continuing.</div><div>VDSNetworkException: </div><div>2012-06-29 = 08:37:17,330 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] (Quart= zScheduler_Worker-15) ResourceManager::refreshVdsRunTimeInfo::Failed to ref= resh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network= Error, continuing.</div><div>VDSNetworkException: </div><div>2012-06-= 29 08:37:19,349 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] (Qu= artzScheduler_Worker-21) ResourceManager::refreshVdsRunTimeInfo::Failed to = refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Netw= ork Error, continuing.</div><div>VDSNetworkException: </div><div>2012-= 06-29 08:37:21,366 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] = (QuartzScheduler_Worker-25) ResourceManager::refreshVdsRunTimeInfo::Failed = to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS N= etwork Error, continuing.</div><div>VDSNetworkException: </div><div>20= 12-06-29 08:37:23,385 WARN [org.ovirt.engine.core.vdsbroker.VdsManage= r] (QuartzScheduler_Worker-26) ResourceManager::refreshVdsRunTimeInfo::Fail= ed to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VD= S Network Error, continuing.</div><div>VDSNetworkException: </div><div= div>2012-06-29 08:37:27,422 WARN [org.ovirt.engine.core.vdsbroker.Vds= Manager] (QuartzScheduler_Worker-34) ResourceManager::refreshVdsRunTimeInfo= ::Failed to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : te= st, VDS Network Error, continuing.</div><div>VDSNetworkException: </di= v><div>2012-06-29 08:37:29,443 WARN [org.ovirt.engine.core.vdsbroker.= VdsManager] (QuartzScheduler_Worker-37) ResourceManager::refreshVdsRunTimeI= nfo::Failed to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 := test, VDS Network Error, continuing.</div><div>VDSNetworkException: <= /div><div>2012-06-29 08:37:31,462 WARN [org.ovirt.engine.core.vdsbrok= er.VdsManager] (QuartzScheduler_Worker-41) ResourceManager::refreshVdsRunTi= meInfo::Failed to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f= 6 : test, VDS Network Error, continuing.</div><div>VDSNetworkException:&nbs= p;</div><div>2012-06-29 08:37:33,480 WARN [org.ovirt.engine.core.vdsb= roker.VdsManager] (QuartzScheduler_Worker-45) ResourceManager::refreshVdsRu= nTimeInfo::Failed to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb2= 55f6 : test, VDS Network Error, continuing.</div><div>VDSNetworkException:&= nbsp;</div><div>2012-06-29 08:37:35,675 WARN [org.ovirt.engine.core.v= dsbroker.VdsManager] (QuartzScheduler_Worker-46) ResourceManager::refreshVd= sRunTimeInfo::Failed to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694= eb255f6 : test, VDS Network Error, continuing.</div><div>VDSNetworkExceptio= n: </div><div>2012-06-29 08:37:37,694 WARN [org.ovirt.engine.cor= e.vdsbroker.VdsManager] (QuartzScheduler_Worker-50) ResourceManager::refres= hVdsRunTimeInfo::Failed to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b= 694eb255f6 : test, VDS Network Error, continuing.</div><div>VDSNetworkExcep= tion: </div><div>2012-06-29 08:37:39,717 WARN [org.ovirt.engine.= core.vdsbroker.VdsManager] (QuartzScheduler_Worker-57) ResourceManager::ref= reshVdsRunTimeInfo::Failed to refresh VDS , vds =3D 105460c0-c0ea-11e1-b737= -9b694eb255f6 : test, VDS Network Error, continuing.</div><div>VDSNetworkEx= ception: </div><div>2012-06-29 08:37:41,737 WARN [org.ovirt.engi= ne.core.vdsbroker.VdsManager] (QuartzScheduler_Worker-58) ResourceManager::= refreshVdsRunTimeInfo::Failed to refresh VDS , vds =3D 105460c0-c0ea-11e1-b= 737-9b694eb255f6 : test, VDS Network Error, continuing.</div><div>VDSNetwor= kException: </div><div>2012-06-29 08:37:43,754 WARN [org.ovirt.e= ngine.core.vdsbroker.VdsManager] (QuartzScheduler_Worker-62) ResourceManage= r::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =3D 105460c0-c0ea-11e= 1-b737-9b694eb255f6 : test, VDS Network Error, continuing.</div><div>VDSNet= workException: </div><div>2012-06-29 08:37:45,772 WARN [org.ovir= t.engine.core.vdsbroker.VdsManager] (QuartzScheduler_Worker-66) ResourceMan= ager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =3D 105460c0-c0ea-= 11e1-b737-9b694eb255f6 : test, VDS Network Error, continuing.</div><div>VDS= NetworkException: </div><div>2012-06-29 08:37:47,789 WARN [org.o= virt.engine.core.vdsbroker.VdsManager] (QuartzScheduler_Worker-67) Resource= Manager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =3D 105460c0-c0= ea-11e1-b737-9b694eb255f6 : test, VDS Network Error, continuing.</div><div>= VDSNetworkException: </div><div>2012-06-29 08:37:49,814 WARN [or= g.ovirt.engine.core.vdsbroker.VdsManager] (QuartzScheduler_Worker-73) Resou= rceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =3D 105460c0= -c0ea-11e1-b737-9b694eb255f6 : test, VDS Network Error, continuing.</div><d= iv>VDSNetworkException: </div><div>2012-06-29 08:37:51,831 WARN = [org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzScheduler_Worker-77) Re= sourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =3D 10546= 0c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network Error, continuing.</div= div><div>VDSNetworkException: </div><div>2012-06-29 08:37:55,865 WARN = [org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzScheduler_Worker-= 82) ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =3D= 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network Error, continuing= .</div><div>VDSNetworkException: </div><div>2012-06-29 08:37:57,881 WA= RN [org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzScheduler_Work= er-86) ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds = =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network Error, continu= ing.</div><div>VDSNetworkException: </div><div>2012-06-29 08:37:59,898= WARN [org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzScheduler_W= orker-89) ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , v= ds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network Error, cont= inuing.</div><div>VDSNetworkException: </div><div>2012-06-29 08:38:01,= 922 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzSchedule= r_Worker-93) ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS = , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network Error, c= ontinuing.</div><div>VDSNetworkException: </div><div>2012-06-29 08:38:= 03,938 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzSched= uler_Worker-97) ResourceManager::refreshVdsRunTimeInfo::Failed to refresh V= DS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network Error= , continuing.</div><div>VDSNetworkException: </div><div>2012-06-29 08:= 38:05,954 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzSc= heduler_Worker-98) ResourceManager::refreshVdsRunTimeInfo::Failed to refres= h VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network Er= ror, continuing.</div><div>VDSNetworkException: </div><div>2012-06-29 = 08:38:07,971 WARN [org.ovirt.engine.core.vdsbroker.VdsManager] (Quart= zScheduler_Worker-2) ResourceManager::refreshVdsRunTimeInfo::Failed to refr= esh VDS , vds =3D 105460c0-c0ea-11e1-b737-9b694eb255f6 : test, VDS Network = Error, continuing.</div><div>VDSNetworkException: </div><div>2012-06-2= 9 08:38:09,986 ERROR [org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzSc= heduler_Worker-10) VDS::handleNetworkException Server failed to respond, &n= bsp;vds_id =3D 105460c0-c0ea-11e1-b737-9b694eb255f6, vds_name =3D test, err= or =3D VDSNetworkException: </div><div>2012-06-29 08:38:10,015 INFO &n= bsp;[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector] = (QuartzScheduler_Worker-10) AuditLogType: UNASSIGNED not exist in string ta= ble</div><div>2012-06-29 08:38:10,017 INFO [org.ovirt.engine.core.dal= .dbbroker.auditloghandling.AuditLogDirector] (QuartzScheduler_Worker-10) Au= ditLogType: STORAGE_ACTIVATE_ASYNC not exist in string table</div><div>2012= -06-29 08:38:10,017 INFO [org.ovirt.engine.core.dal.dbbroker.auditlog= handling.AuditLogDirector] (QuartzScheduler_Worker-10) AuditLogType: DWH_ST= OPPED not exist in string table</div><div>2012-06-29 08:38:10,018 INFO &nbs= p;[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector] (Q= uartzScheduler_Worker-10) AuditLogType: DWH_STARTED not exist in string tab= le</div><div>2012-06-29 08:38:10,019 INFO [org.ovirt.engine.core.dal.= dbbroker.auditloghandling.AuditLogDirector] (QuartzScheduler_Worker-10) Aud= itLogType: DWH_ERROR not exist in string table</div><div>2012-06-29 08:38:1= 0,137 INFO [org.ovirt.engine.core.bll.VdsEventListener] (pool-3-threa= d-31) ResourceManager::vdsNotResponding entered for Host 105460c0-c0ea-11e1= -b737-9b694eb255f6, 172.22.8.14</div><div>2012-06-29 08:38:10,298 ERROR [or= g.ovirt.engine.core.bll.VdsNotRespondingTreatmentCommand] (pool-3-thread-31= ) [25e9c476] Failed to run Fence script on vds:test, VMs moved to UnKnown i= nstead.</div><div><br></div><div><br></div><div><div>OK, one step forward a= nd one step back. It seems as if the host installation went through, but af= ter reboot, I have no contact with the web user interface. It thinks it=B4s= active:</div><div><div># systemctl is-active ovirt-engine.service</div><di= v>active</div><div><br></div><div>But I don=B4t even get to the initial por= tal chooser-page.</div><div><br></div><div>/Karli</div><div><br></div></div= py<br><br> def _makeConfig(self):<br> &= nbsp; import datetime<br> &n= bsp; from config import config<br><br> &= nbsp; if not os.path.exists(VDSM_CONF):<br> &n= bsp; loggi= ng.debug("makeConfig: generating conf.")<br> = lines =3D []<br> &nbs= p; lines.append ("# Au= to-generated by vds_bootstrap at:" + str(datetime.datetime.now()) + "\n")<b= r> = lines.append ("\n")<br><br>  = ; lines.append ("[vars]\n") #Adding ts for the comin= g scirpts.<br> = lines.append ("trust_store_path =3D " + config.get('vars', 'tru= st_store_path') + "\n")<br>  = ; lines.append ("ssl =3D " + config.get('vars', 'ssl= ') + "\n")<br> = lines.append ("\n")<br><br>  = ; lines.append ("[addresses]\n") #Adding= mgt port for the coming scirpts.<br> &= nbsp; lines.append ("management_port =3D " + c= onfig.get('addresses', 'management_port') + "\n")<br><br>  = ; logging.debug("makeC= onfig: writing the following to " + VDSM_CONF)<br> = logging.debug(lines)<br> &n= bsp; fd, t= mpName =3D tempfile.mkstemp()<br>  = ; f =3D os.fdopen(fd, 'w')<br> &nb= sp; f.writelines(lines= )<br> &nb= sp;f.close()<br> &nbs= p; os.chmod(tmpName, 0644)<br> &nb= sp; shutil.move(tmpName, VDSM_CONF)<br> = else:<br>  = ; self.message =3D 'Ba= sic configuration found, skipping this step'<br> &n= bsp; logging.debug(self.message)<b= r><br> def createConf(self):<br> = """<br> &= nbsp; Generate initial configuration file for = VDSM. Must run after package installation!<br> &nbs= p; """<br>  = ;self.message =3D 'Basic configuration set'<br> &nb= sp; self.rc =3D True<br> &nb= sp; self.status =3D 'OK'<br><br> &= nbsp; try:<br> &= nbsp; self._makeConfig()<br>  = ; except Exception, e:<br> &= nbsp; logging.error('', exc_info=3DTrue)= <br><br> ^^^^ the interesting stuff is written to a log file, sitting in yo= ur<br> /tmp or a directory below it. Which module fails to be imported?<br>= <br> /tmp/vds_bootstrap.210442.log:<br><br> Thu, 28 Jun 2012 12:25:51 DEBUG= Installing libjpeg 0<br> Thu, 28 Jun 2012 12:25:51 DEBUG= ['/usr/bin/yum', '-y', 'install', 'libjpeg']<br> Thu, 28= Jun 2012 12:25:53 DEBUG Loaded plugins: langpacks, prest= o, refresh-packagekit, versionlock<br> Package libjpeg-turbo-1.2.0-1.fc17.x= 86_64 already installed and latest version<br> Nothing to do<br><br> Thu, 2= 8 Jun 2012 12:25:53 DEBUG<br> Thu, 28 Jun 2012 12:25:53 DEBUG &= nbsp;['/bin/rpm', '-q', 'libjpeg']<br> Thu, 28 Jun 2012 12:25:53 DEBUG &nbs= p; package libjpeg is not installed<br><br> Thu, 28 Jun 2012 12:= 25:53 DEBUG<br> Thu, 28 Jun 2012 12:25:53 DEBUG<br> Thu, 28 Jun 2012 12:25:= 53 ERROR<br> Traceback (most recent call last):<br> File = "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594, in = createConf<br> self._makeConfig()<br> &= nbsp; File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py= ", line 557, in _makeConfig<br> from config i= mport config<br> ImportError: No module named config<br> Thu, 28 Jun 2012 1= 2:25:53 DEBUG<br> Thu, 28 Jun 2012 12:25:53 ERROR createC= onf failed<br> Thu, 28 Jun 2012 12:25:53 DEBUG<br> Thu, 28 Jun 2012 12:25:5= 3 DEBUG **** End VDS Validation ****<br><br><br> Which ve= rsion of vdsm-bootstrap do you have installed? if it is not a<br> 4.10.some= thing, I suggest you upgrade.<br><br> # rpm -qa | grep vdsm-bootstrap<br> v= dsm-bootstrap-4.9.3.2-0.fc17.noarch<br><br> That's too old to install ovirt= -3.1.<br> Please retry with the one on the beta repo<br> <a href=3D"http://= kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-bootstr= ap-4.10.0-3.fc17.noarch.rpm">http://kojipkgs.fedoraproject.org//packages/vd= sm/4.10.0/3.fc17/noarch/vdsm-bootstrap-4.10.0-3.fc17.noarch.rpm</a><br><br>= <br>indeed.<br>i think the error is not about libjpeg at all, which is prob= ably<br>provided by libjpeg-turbo as yum install for it suggest.<br>so just= a too old bootstrap file as danken suggests, causing this which<br>is the = actual error:<br> Traceback (most recent call last):<br> = File<br>"/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da= 5.py", line 594,<br>in createConf<br> s= elf._makeConfig()<br> File<br>"/tmp/vds_bootstrap_c= a67f0a5-115c-4943-a9ef-157654586da5.py", line 557,<br>in _makeConfig<br> &n= bsp; from config import config<br> Impor= tError: No module named config<br><br><br>rpm -U <a href=3D"http://kojipkgs= .fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-bootstrap-4.10.= 0-3.fc17.noarch.rpm">http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.= 0/3.fc17/noarch/vdsm-bootstrap-4.10.0-3.fc17.noarch.rpm</a><br><br>Then, af= ter next "Re-Install"<br><br>more /tmp/vds_bootstrap.470161.log<br>Thu, 28 = Jun 2012 19:39:45 DEBUG **** Start VDS Validation ****<br>Thu,= 28 Jun 2012 19:39:45 DEBUG Entered VdsValidation(subject = ;=3D '172.22.8.14', random_num =3D 'e27aad2f-4bb2-42f1-930e-6c7bab54fb1c', = rev_num =3D 'None', installVirtualizationService =3D 'True',installGlusterS= ervice =3D 'False')<br>Thu, 28 Jun 2012 19:39:45 ERROR checkRe= gistration: Error searching for VDSM package!<br>Traceback (most recent cal= l last):<br> File "/tmp/vds_bootstrap_e27aad2f-4bb2-42f1-930e-6c7bab5= 4fb1c.py", line 228, in checkRegistration<br> rc =3D bool(depl= oyUtil.yumListPackages(VDSM_NAME))<br>AttributeError: 'module' object has n= o attribute 'yumListPackages'<br>Thu, 28 Jun 2012 19:39:45 ERROR &nb= sp;Unable to fetch vdsm package.<br> Please check if host is registere= d to RHN, Satellite or other yum repository<br>Thu, 28 Jun 2012 19:39:45 DE= BUG <br>Thu, 28 Jun 2012 19:39:45 ERROR checkRegi= stration test failed<br>Thu, 28 Jun 2012 19:39:45 DEBUG <br>Th= u, 28 Jun 2012 19:39:45 DEBUG **** End VDS Validation ****<br>= _______________________________________________<br>Users mailing list<br><a= href=3D"mailto:Users@ovirt.org">Users@ovirt.org</a><br>http://lists.ovirt.= org/mailman/listinfo/users<br><br>Sent from my Android phone. Please ignore= typos.<br></div></blockquote></div><br><div> <div><br class=3D"Apple-interchange-newline"><br></div><div>Med V=E4nliga H= =E4lsningar<br>------------------------------------------------------------= -------------------<br>Karli Sj=F6berg<br>Swedish University of Agricultura= l Sciences<br>Box 7079 (Visiting Address Kron=E5sv=E4gen 8)<br>S-750 07 Upp= sala, Sweden<br>Phone: +46-(0)18-67 15 66</div><div><a href=3D"mailto= :karli.sjoberg@adm.slu.se">karli.sjoberg@slu.se</a></div> </div> <br></body></html>= --_000_0B66A4FCD6114CB889819CE39E47B72Fsluse_--

On 06/29/2012 03:27 AM, Karli Sjöberg wrote:
28 jun 2012 kl. 22.11 skrev Doron Fediuck:
Please rm /tmp/*py* in your host. Older scripts may be interrupting.
# rm -f /tmp/*py* # rm -f /tmp/*log* # rm -f /tmp/*tmp*
"Re-Install"
/var/log/ovirt-engine/engine.log:
...
OK, one step forward and one step back. It seems as if the host installation went through, but after reboot, I have no contact with the web user interface. It thinks it´s active: # systemctl is-active ovirt-engine.service active
But I don´t even get to the initial portal chooser-page.
did you try to add the host the engine is running on or another physical machine?
/Karli
Sent from my Android phone. Please ignore typos.
-----Original Message----- From: =?iso-8859-1?Q?Karli_Sj=F6berg?= [Karli.Sjoberg@slu.se] Received: Thursday, 28 Jun 2012, 21:37 To: Itamar Heim [iheim@redhat.com]; Dan Kenigsberg [danken@redhat.com] CC: users@oVirt.org <mailto:users@oVirt.org> [users@ovirt.org] Subject: Re: [Users] BSTRAP component='CreateConf' status='FAIL' message='Basic configuration failed to import default values'
________________________________________ Från: Itamar Heim [iheim@redhat.com] Skickat: den 28 juni 2012 18:35 Till: Dan Kenigsberg Kopia: Karli Sjöberg; users@oVirt.org <mailto:users@oVirt.org> Ämne: Re: [Users] BSTRAP component='CreateConf' status='FAIL' message='Basic configuration failed to import default values'
On 06/28/2012 10:41 AM, Dan Kenigsberg wrote: On Thu, Jun 28, 2012 at 04:12:15PM +0200, Karli Sjöberg wrote:
28 jun 2012 kl. 15.55 skrev Dan Kenigsberg:
On Thu, Jun 28, 2012 at 12:32:27PM +0200, Karli Sjöberg wrote: Hi,
I am running Fedora 17 and added the ovirt beta repository to have access to webadmin addition, since F17 only comes with CLI by default.
The action in question "CreateConf" looks like:
/usr/share/vdsm-bootstrap/vds_bootstrap.py
def _makeConfig(self): import datetime from config import config
if not os.path.exists(VDSM_CONF): logging.debug("makeConfig: generating conf.") lines = [] lines.append ("# Auto-generated by vds_bootstrap at:" + str(datetime.datetime.now()) + "\n") lines.append ("\n")
lines.append ("[vars]\n") #Adding ts for the coming scirpts. lines.append ("trust_store_path = " + config.get('vars', 'trust_store_path') + "\n") lines.append ("ssl = " + config.get('vars', 'ssl') + "\n") lines.append ("\n")
lines.append ("[addresses]\n") #Adding mgt port for the coming scirpts. lines.append ("management_port = " + config.get('addresses', 'management_port') + "\n")
logging.debug("makeConfig: writing the following to " + VDSM_CONF) logging.debug(lines) fd, tmpName = tempfile.mkstemp() f = os.fdopen(fd, 'w') f.writelines(lines) f.close() os.chmod(tmpName, 0644) shutil.move(tmpName, VDSM_CONF) else: self.message = 'Basic configuration found, skipping this step' logging.debug(self.message)
def createConf(self): """ Generate initial configuration file for VDSM. Must run after package installation! """ self.message = 'Basic configuration set' self.rc = True self.status = 'OK'
try: self._makeConfig() except Exception, e: logging.error('', exc_info=True)
^^^^ the interesting stuff is written to a log file, sitting in your /tmp or a directory below it. Which module fails to be imported?
/tmp/vds_bootstrap.210442.log:
Thu, 28 Jun 2012 12:25:51 DEBUG Installing libjpeg 0 Thu, 28 Jun 2012 12:25:51 DEBUG ['/usr/bin/yum', '-y', 'install', 'libjpeg'] Thu, 28 Jun 2012 12:25:53 DEBUG Loaded plugins: langpacks, presto, refresh-packagekit, versionlock Package libjpeg-turbo-1.2.0-1.fc17.x86_64 already installed and latest version Nothing to do
Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG ['/bin/rpm', '-q', 'libjpeg'] Thu, 28 Jun 2012 12:25:53 DEBUG package libjpeg is not installed
Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 ERROR Traceback (most recent call last): File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594, in createConf self._makeConfig() File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 557, in _makeConfig from config import config ImportError: No module named config Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 ERROR createConf failed Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG **** End VDS Validation ****
Which version of vdsm-bootstrap do you have installed? if it is not a 4.10.something, I suggest you upgrade.
# rpm -qa | grep vdsm-bootstrap vdsm-bootstrap-4.9.3.2-0.fc17.noarch
That's too old to install ovirt-3.1. Please retry with the one on the beta repo http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-b...
indeed. i think the error is not about libjpeg at all, which is probably provided by libjpeg-turbo as yum install for it suggest. so just a too old bootstrap file as danken suggests, causing this which is the actual error: Traceback (most recent call last): File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594, in createConf self._makeConfig() File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 557, in _makeConfig from config import config ImportError: No module named config
rpm -U http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-b...
Then, after next "Re-Install"
more /tmp/vds_bootstrap.470161.log Thu, 28 Jun 2012 19:39:45 DEBUG **** Start VDS Validation **** Thu, 28 Jun 2012 19:39:45 DEBUG Entered VdsValidation(subject = '172.22.8.14', random_num = 'e27aad2f-4bb2-42f1-930e-6c7bab54fb1c', rev_num = 'None', installVirtualizationService = 'True',installGlusterService = 'False') Thu, 28 Jun 2012 19:39:45 ERROR checkRegistration: Error searching for VDSM package! Traceback (most recent call last): File "/tmp/vds_bootstrap_e27aad2f-4bb2-42f1-930e-6c7bab54fb1c.py", line 228, in checkRegistration rc = bool(deployUtil.yumListPackages(VDSM_NAME)) AttributeError: 'module' object has no attribute 'yumListPackages' Thu, 28 Jun 2012 19:39:45 ERROR Unable to fetch vdsm package. Please check if host is registered to RHN, Satellite or other yum repository Thu, 28 Jun 2012 19:39:45 DEBUG Thu, 28 Jun 2012 19:39:45 ERROR checkRegistration test failed Thu, 28 Jun 2012 19:39:45 DEBUG Thu, 28 Jun 2012 19:39:45 DEBUG **** End VDS Validation **** _______________________________________________ Users mailing list Users@ovirt.org <mailto:Users@ovirt.org> http://lists.ovirt.org/mailman/listinfo/users
Sent from my Android phone. Please ignore typos.
Med Vänliga Hälsningar ------------------------------------------------------------------------------- Karli Sjöberg Swedish University of Agricultural Sciences Box 7079 (Visiting Address Kronåsvägen 8) S-750 07 Uppsala, Sweden Phone: +46-(0)18-67 15 66 karli.sjoberg@slu.se <mailto:karli.sjoberg@adm.slu.se>
_______________________________________________ Users mailing list Users@ovirt.org http://lists.ovirt.org/mailman/listinfo/users

<blockquote type=3D"cite"># rm -f /tmp/*py*<br></blockquote><blockquote ty=
<blockquote type=3D"cite"><br></blockquote><blockquote type=3D"cite">"Re-I= nstall"<br></blockquote><blockquote type=3D"cite"><br></blockquote><blockqu= ote type=3D"cite"><br></blockquote><blockquote type=3D"cite">/var/log/ovirt= -engine/engine.log:<br></blockquote><blockquote type=3D"cite"><br></blockqu= ote>...<br><br><blockquote type=3D"cite"><br></blockquote><blockquote type= =3D"cite"><br></blockquote><blockquote type=3D"cite">OK, one step forward a= nd one step back. It seems as if the host<br></blockquote><blockquote type= =3D"cite">installation went through, but after reboot, I have no contact wi=
<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite">Sent from my Android phone. Please ignore typos.<br></blockquote>= </blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></bloc= kquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">---= --Original Message-----<br></blockquote></blockquote><blockquote type=3D"ci= te"><blockquote type=3D"cite">From: =3D?iso-8859-1?Q?Karli_Sj=3DF6berg?=3D = [Karli.Sjoberg@slu.se]<br></blockquote></blockquote><blockquote type=3D"cit= e"><blockquote type=3D"cite">Received: Thursday, 28 Jun 2012, 21:37<br></bl= ockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">T= o: Itamar Heim [iheim@redhat.com]; Dan Kenigsberg [danken@redhat.com]<br></=
CC: <a href=3D"mailto:users@oVirt.org">users@oVirt.org</a> <<a href=3D"= mailto:users@oVirt.org">mailto:users@oVirt.org</a>> [users@ovirt.org]<br= </blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"ci= te">Subject: Re: [Users] BSTRAP component=3D'CreateConf' status=3D'FAIL'<br= </blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"ci= te">message=3D'Basic configuration failed to import default values'<br></bl= ockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><= br></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"= cite">________________________________________<br></blockquote></blockquote= <blockquote type=3D"cite"><blockquote type=3D"cite">Fr=E5n: Itamar Heim [i= heim@redhat.com]<br></blockquote></blockquote><blockquote type=3D"cite"><bl= ockquote type=3D"cite">Skickat: den 28 juni 2012 18:35<br></blockquote></bl= ockquote><blockquote type=3D"cite"><blockquote type=3D"cite">Till: Dan Keni= gsberg<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote t= ype=3D"cite">Kopia: Karli Sj=F6berg; <a href=3D"mailto:users@oVirt.org">use= rs@oVirt.org</a> <<a href=3D"mailto:users@oVirt.org">mailto:users@oVirt.= org</a>><br></blockquote></blockquote><blockquote type=3D"cite"><blockqu= ote type=3D"cite">=C4mne: Re: [Users] BSTRAP component=3D'CreateConf' statu= s=3D'FAIL'<br></blockquote></blockquote><blockquote type=3D"cite"><blockquo= te type=3D"cite">message=3D'Basic configuration failed to import default va= lues'<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote ty=
<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><br></blockquote></blockquote><blockquote type=3D"cite"><blockquo= te type=3D"cite"><br></blockquote></blockquote><blockquote type=3D"cite"><b= lockquote type=3D"cite"><br></blockquote></blockquote><blockquote type=3D"c= ite"><blockquote type=3D"cite"><br></blockquote></blockquote><blockquote ty=
</blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">"""<br></=
self.message =3D 'Basic configuration set'<br></blockquote></blockquote><b= lockquote type=3D"cite"><blockquote type=3D"cite">self.rc =3D True<br></blo= ckquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">se= lf.status =3D 'OK'<br></blockquote></blockquote><blockquote type=3D"cite"><=
version<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote= type=3D"cite">Nothing to do<br></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquote><blockquo= te type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 12:25:53 DEBUG<= br></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"= cite">Thu, 28 Jun 2012 12:25:53 DEBUG ['/bin/rpm', '-q', 'libjpeg']<br></bl= ockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">T= hu, 28 Jun 2012 12:25:53 DEBUG package libjpeg is not installed<br></blockq= uote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br><= /blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite= ">Thu, 28 Jun 2012 12:25:53 DEBUG<br></blockquote></blockquote><blockquote = type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 12:25:53 DEBUG<br>= </blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cit= e">Thu, 28 Jun 2012 12:25:53 ERROR<br></blockquote></blockquote><blockquote= type=3D"cite"><blockquote type=3D"cite">Traceback (most recent call last):= <br></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D= "cite">File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py",<b= r></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"c= ite">line 594, in createConf<br></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite">self._makeConfig()<br></blockquote></bl= ockquote><blockquote type=3D"cite"><blockquote type=3D"cite">File "/tmp/vds= _bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py",<br></blockquote></bloc= kquote><blockquote type=3D"cite"><blockquote type=3D"cite">line 557, in _ma= keConfig<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote= type=3D"cite">from config import config<br></blockquote></blockquote><bloc= kquote type=3D"cite"><blockquote type=3D"cite">ImportError: No module named= config<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote = type=3D"cite">Thu, 28 Jun 2012 12:25:53 DEBUG<br></blockquote></blockquote>= <blockquote type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 12:25:= 53 ERROR createConf failed<br></blockquote></blockquote><blockquote type=3D= "cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 12:25:53 DEBUG<br></block= quote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">Thu,= 28 Jun 2012 12:25:53 DEBUG **** End VDS Validation ****<br></blockquote></=
<blockquote type=3D"cite"><br></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquote><blockquo= te type=3D"cite"><blockquote type=3D"cite">indeed.<br></blockquote></blockq= uote><blockquote type=3D"cite"><blockquote type=3D"cite">i think the error = is not about libjpeg at all, which is probably<br></blockquote></blockquote= <blockquote type=3D"cite"><blockquote type=3D"cite">provided by libjpeg-tu= rbo as yum install for it suggest.<br></blockquote></blockquote><blockquote= type=3D"cite"><blockquote type=3D"cite">so just a too old bootstrap file a= s danken suggests, causing this which<br></blockquote></blockquote><blockqu= ote type=3D"cite"><blockquote type=3D"cite">is the actual error:<br></block= quote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">Trac= eback (most recent call last):<br></blockquote></blockquote><blockquote typ= e=3D"cite"><blockquote type=3D"cite">File<br></blockquote></blockquote><blo= ckquote type=3D"cite"><blockquote type=3D"cite">"/tmp/vds_bootstrap_ca67f0a= 5-115c-4943-a9ef-157654586da5.py", line 594,<br></blockquote></blockquote><=
<blockquote type=3D"cite"><br></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite">Then, after next "Re-Install"<br></bloc= kquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br= </blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"ci= te">more /tmp/vds_bootstrap.470161.log<br></blockquote></blockquote><blockq= uote type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 19:39:45 DEBU= G **** Start VDS Validation ****<br></blockquote></blockquote><blockquote t= ype=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 19:39:45 DEBUG Ente= red VdsValidation(subject =3D<br></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite">'172.22.8.14', random_num =3D 'e27aad2f= -4bb2-42f1-930e-6c7bab54fb1c',<br></blockquote></blockquote><blockquote typ= e=3D"cite"><blockquote type=3D"cite">rev_num =3D 'None', installVirtualizat= ionService =3D<br></blockquote></blockquote><blockquote type=3D"cite"><bloc= kquote type=3D"cite">'True',installGlusterService =3D 'False')<br></blockqu= ote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">Thu, 2= 8 Jun 2012 19:39:45 ERROR checkRegistration: Error searching for<br></block= quote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">VDSM=
</blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"ci= te">Thu, 28 Jun 2012 19:39:45 DEBUG<br></blockquote></blockquote><blockquot= e type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 19:39:45 ERROR c= heckRegistration test failed<br></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 19:39:45 DEBUG<br></bl= ockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">T= hu, 28 Jun 2012 19:39:45 DEBUG **** End VDS Validation ****<br></blockquote= </blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">_________= ______________________________________<br></blockquote></blockquote><blockq= uote type=3D"cite"><blockquote type=3D"cite">Users mailing list<br></blockq= uote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><a hr= ef=3D"mailto:Users@ovirt.org">Users@ovirt.org</a> <<a href=3D"mailto:Use= rs@ovirt.org">mailto:Users@ovirt.org</a>><br></blockquote></blockquote><=
<br></blockquote><blockquote type=3D"cite"><br></blockquote><blockquote ty=
<blockquote type=3D"cite">Users mailing list<br></blockquote><blockquote t= ype=3D"cite"><a href=3D"mailto:Users@ovirt.org">Users@ovirt.org</a><br></bl= ockquote><blockquote type=3D"cite"><a href=3D"http://lists.ovirt.org/mailma= n/listinfo/users">http://lists.ovirt.org/mailman/listinfo/users</a><br></bl= ockquote><br></div></blockquote></div><br><div> <span class=3D"Apple-style-span" style=3D"border-collapse: separate; color:= rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: no= rmal; font-weight: normal; letter-spacing: normal; line-height: normal; orp= hans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; = white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizonta= l-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorati= ons-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-wi=
--_000_CA7FD904222046069C7DD2BD9EC225B4sluse_ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable 29 jun 2012 kl. 12.54 skrev Itamar Heim: On 06/29/2012 03:27 AM, Karli Sj=F6berg wrote: 28 jun 2012 kl. 22.11 skrev Doron Fediuck: Please rm /tmp/*py* in your host. Older scripts may be interrupting. # rm -f /tmp/*py* # rm -f /tmp/*log* # rm -f /tmp/*tmp* "Re-Install" /var/log/ovirt-engine/engine.log: ... OK, one step forward and one step back. It seems as if the host installation went through, but after reboot, I have no contact with the web user interface. It thinks it=B4s active: # systemctl is-active ovirt-engine.service active But I don=B4t even get to the initial portal chooser-page. did you try to add the host the engine is running on or another physical machine? The same. As I stated in the beginning, I want to be able to have the engin= e configured to execute power management for the rest of the hosts in the c= luster, as per: Source: http://lists.ovirt.org/pipermail/users/2012-February/000361.html "Yes, the ovirt backend does not shut down or power up any hosts directly, = it can work only through vdsm. Therefore you need one running host per data= center to be able to manage the rest of the hosts." Adding the engine as a host in the cluster seems to be the way to achieve t= hat. /Karli /Karli Sent from my Android phone. Please ignore typos. -----Original Message----- From: =3D?iso-8859-1?Q?Karli_Sj=3DF6berg?=3D [Karli.Sjoberg@slu.se] Received: Thursday, 28 Jun 2012, 21:37 To: Itamar Heim [iheim@redhat.com]; Dan Kenigsberg [danken@redhat.com] CC: users@oVirt.org<mailto:users@oVirt.org> <mailto:users@oVirt.org> [users= @ovirt.org] Subject: Re: [Users] BSTRAP component=3D'CreateConf' status=3D'FAIL' message=3D'Basic configuration failed to import default values' ________________________________________ Fr=E5n: Itamar Heim [iheim@redhat.com] Skickat: den 28 juni 2012 18:35 Till: Dan Kenigsberg Kopia: Karli Sj=F6berg; users@oVirt.org<mailto:users@oVirt.org> <mailto:use= rs@oVirt.org> =C4mne: Re: [Users] BSTRAP component=3D'CreateConf' status=3D'FAIL' message=3D'Basic configuration failed to import default values' On 06/28/2012 10:41 AM, Dan Kenigsberg wrote: On Thu, Jun 28, 2012 at 04:12:15PM +0200, Karli Sj=F6berg wrote: 28 jun 2012 kl. 15.55 skrev Dan Kenigsberg: On Thu, Jun 28, 2012 at 12:32:27PM +0200, Karli Sj=F6berg wrote: Hi, I am running Fedora 17 and added the ovirt beta repository to have access to webadmin addition, since F17 only comes with CLI by default. The action in question "CreateConf" looks like: /usr/share/vdsm-bootstrap/vds_bootstrap.py def _makeConfig(self): import datetime from config import config if not os.path.exists(VDSM_CONF): logging.debug("makeConfig: generating conf.") lines =3D [] lines.append ("# Auto-generated by vds_bootstrap at:" + str(datetime.datetime.now()) + "\n") lines.append ("\n") lines.append ("[vars]\n") #Adding ts for the coming scirpts. lines.append ("trust_store_path =3D " + config.get('vars', 'trust_store_path') + "\n") lines.append ("ssl =3D " + config.get('vars', 'ssl') + "\n") lines.append ("\n") lines.append ("[addresses]\n") #Adding mgt port for the coming scirpts. lines.append ("management_port =3D " + config.get('addresses', 'management_port') + "\n") logging.debug("makeConfig: writing the following to " + VDSM_CONF) logging.debug(lines) fd, tmpName =3D tempfile.mkstemp() f =3D os.fdopen(fd, 'w') f.writelines(lines) f.close() os.chmod(tmpName, 0644) shutil.move(tmpName, VDSM_CONF) else: self.message =3D 'Basic configuration found, skipping this step' logging.debug(self.message) def createConf(self): """ Generate initial configuration file for VDSM. Must run after package installation! """ self.message =3D 'Basic configuration set' self.rc =3D True self.status =3D 'OK' try: self._makeConfig() except Exception, e: logging.error('', exc_info=3DTrue) ^^^^ the interesting stuff is written to a log file, sitting in your /tmp or a directory below it. Which module fails to be imported? /tmp/vds_bootstrap.210442.log: Thu, 28 Jun 2012 12:25:51 DEBUG Installing libjpeg 0 Thu, 28 Jun 2012 12:25:51 DEBUG ['/usr/bin/yum', '-y', 'install', 'libjpeg'] Thu, 28 Jun 2012 12:25:53 DEBUG Loaded plugins: langpacks, presto, refresh-packagekit, versionlock Package libjpeg-turbo-1.2.0-1.fc17.x86_64 already installed and latest version Nothing to do Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG ['/bin/rpm', '-q', 'libjpeg'] Thu, 28 Jun 2012 12:25:53 DEBUG package libjpeg is not installed Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 ERROR Traceback (most recent call last): File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594, in createConf self._makeConfig() File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 557, in _makeConfig from config import config ImportError: No module named config Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 ERROR createConf failed Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG **** End VDS Validation **** Which version of vdsm-bootstrap do you have installed? if it is not a 4.10.something, I suggest you upgrade. # rpm -qa | grep vdsm-bootstrap vdsm-bootstrap-4.9.3.2-0.fc17.noarch That's too old to install ovirt-3.1. Please retry with the one on the beta repo http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-= bootstrap-4.10.0-3.fc17.noarch.rpm indeed. i think the error is not about libjpeg at all, which is probably provided by libjpeg-turbo as yum install for it suggest. so just a too old bootstrap file as danken suggests, causing this which is the actual error: Traceback (most recent call last): File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594, in createConf self._makeConfig() File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 557, in _makeConfig from config import config ImportError: No module named config rpm -U http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-= bootstrap-4.10.0-3.fc17.noarch.rpm Then, after next "Re-Install" more /tmp/vds_bootstrap.470161.log Thu, 28 Jun 2012 19:39:45 DEBUG **** Start VDS Validation **** Thu, 28 Jun 2012 19:39:45 DEBUG Entered VdsValidation(subject =3D '172.22.8.14', random_num =3D 'e27aad2f-4bb2-42f1-930e-6c7bab54fb1c', rev_num =3D 'None', installVirtualizationService =3D 'True',installGlusterService =3D 'False') Thu, 28 Jun 2012 19:39:45 ERROR checkRegistration: Error searching for VDSM package! Traceback (most recent call last): File "/tmp/vds_bootstrap_e27aad2f-4bb2-42f1-930e-6c7bab54fb1c.py", line 228, in checkRegistration rc =3D bool(deployUtil.yumListPackages(VDSM_NAME)) AttributeError: 'module' object has no attribute 'yumListPackages' Thu, 28 Jun 2012 19:39:45 ERROR Unable to fetch vdsm package. Please check if host is registered to RHN, Satellite or other yum repository Thu, 28 Jun 2012 19:39:45 DEBUG Thu, 28 Jun 2012 19:39:45 ERROR checkRegistration test failed Thu, 28 Jun 2012 19:39:45 DEBUG Thu, 28 Jun 2012 19:39:45 DEBUG **** End VDS Validation **** _______________________________________________ Users mailing list Users@ovirt.org<mailto:Users@ovirt.org> <mailto:Users@ovirt.org> http://lists.ovirt.org/mailman/listinfo/users Sent from my Android phone. Please ignore typos. Med V=E4nliga H=E4lsningar ---------------------------------------------------------------------------= ---- Karli Sj=F6berg Swedish University of Agricultural Sciences Box 7079 (Visiting Address Kron=E5sv=E4gen 8) S-750 07 Uppsala, Sweden Phone: +46-(0)18-67 15 66 karli.sjoberg@slu.se<mailto:karli.sjoberg@slu.se> <mailto:karli.sjoberg@adm= .slu.se> _______________________________________________ Users mailing list Users@ovirt.org<mailto:Users@ovirt.org> http://lists.ovirt.org/mailman/listinfo/users Med V=E4nliga H=E4lsningar ---------------------------------------------------------------------------= ---- Karli Sj=F6berg Swedish University of Agricultural Sciences Box 7079 (Visiting Address Kron=E5sv=E4gen 8) S-750 07 Uppsala, Sweden Phone: +46-(0)18-67 15 66 karli.sjoberg@slu.se<mailto:karli.sjoberg@adm.slu.se> --_000_CA7FD904222046069C7DD2BD9EC225B4sluse_ Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <html><head></head><body style=3D"word-wrap: break-word; -webkit-nbsp-mode:= space; -webkit-line-break: after-white-space; "><br><div><div>29 jun 2012 = kl. 12.54 skrev Itamar Heim:</div><br class=3D"Apple-interchange-newline"><= blockquote type=3D"cite"><div>On 06/29/2012 03:27 AM, Karli Sj=F6berg wrote= :<br><blockquote type=3D"cite"><br></blockquote><blockquote type=3D"cite">2= 8 jun 2012 kl. 22.11 skrev Doron Fediuck:<br></blockquote><blockquote type= =3D"cite"><br></blockquote><blockquote type=3D"cite"><blockquote type=3D"ci= te">Please rm /tmp/*py* in your host.<br></blockquote></blockquote><blockqu= ote type=3D"cite"><blockquote type=3D"cite">Older scripts may be interrupti= ng.<br></blockquote></blockquote><blockquote type=3D"cite"><br></blockquote= pe=3D"cite"># rm -f /tmp/*log*<br></blockquote><blockquote type=3D"cite"># = rm -f /tmp/*tmp*<br></blockquote><blockquote type=3D"cite"><br></blockquote= th the<br></blockquote><blockquote type=3D"cite">web user interface. It thi= nks it=B4s active:<br></blockquote><blockquote type=3D"cite"># systemctl is= -active ovirt-engine.service<br></blockquote><blockquote type=3D"cite">acti= ve<br></blockquote><blockquote type=3D"cite"><br></blockquote><blockquote t= ype=3D"cite">But I don=B4t even get to the initial portal chooser-page.<br>= </blockquote><br>did you try to add the host the engine is running on or an= other physical <br>machine?<br></div></blockquote><div><br></div>The same. = As I stated in the beginning, I want to be able to have the engine configur= ed to execute power management for the rest of the hosts in the cluster, as= per:</div><div><br></div><div><div>Source: <a href=3D"http://lists.ov= irt.org/pipermail/users/2012-February/000361.html">http://lists.ovirt.org/p= ipermail/users/2012-February/000361.html</a></div><div>"<span class=3D"Appl= e-style-span" style=3D"white-space: pre; ">Yes, the ovirt backend does not = shut down or power up any hosts directly, it can work only through vdsm. Th= erefore you need one running host per datacenter to be able to manage the r= est of the hosts."</span></div><div><span class=3D"Apple-style-span" style= =3D"white-space: pre; "><br></span></div><div><span class=3D"Apple-style-sp= an" style=3D"white-space: pre; ">Adding the engine as a host in the cluster= seems to be the way to achieve that.</span></div><div><span class=3D"Apple= -style-span" style=3D"white-space: pre; "><br></span></div><div><span class= =3D"Apple-style-span" style=3D"white-space: pre; ">/Karli</span></div><div>= <span class=3D"Apple-style-span" style=3D"white-space: pre; "><br></span></= div><blockquote type=3D"cite"><div><br><blockquote type=3D"cite"><br></bloc= kquote><blockquote type=3D"cite">/Karli<br></blockquote><blockquote type=3D= "cite"><br></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"= blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"= pe=3D"cite"><br></blockquote></blockquote><blockquote type=3D"cite"><blockq= uote type=3D"cite">On 06/28/2012 10:41 AM, Dan Kenigsberg wrote:<br></block= quote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">On T= hu, Jun 28, 2012 at 04:12:15PM +0200, Karli Sj=F6berg wrote:<br></blockquot= e></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></bl= ockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">2= 8 jun 2012 kl. 15.55 skrev Dan Kenigsberg:<br></blockquote></blockquote><bl= ockquote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockqu= ote><blockquote type=3D"cite"><blockquote type=3D"cite">On Thu, Jun 28, 201= 2 at 12:32:27PM +0200, Karli Sj=F6berg wrote:<br></blockquote></blockquote>= <blockquote type=3D"cite"><blockquote type=3D"cite">Hi,<br></blockquote></b= lockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockqu= ote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">I am r= unning Fedora 17 and added the ovirt beta repository to have<br></blockquot= e></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">access t= o webadmin addition, since F17 only comes with CLI by default.<br></blockqu= ote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></= blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"= pe=3D"cite"><blockquote type=3D"cite">The action in question "CreateConf" l= ooks like:<br></blockquote></blockquote><blockquote type=3D"cite"><blockquo= te type=3D"cite"><br></blockquote></blockquote><blockquote type=3D"cite"><b= lockquote type=3D"cite">/usr/share/vdsm-bootstrap/vds_bootstrap.py<br></blo= ckquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><b= r></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"c= ite">def _makeConfig(self):<br></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite">import datetime<br></blockquote></block= quote><blockquote type=3D"cite"><blockquote type=3D"cite">from config impor= t config<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote= type=3D"cite"><br></blockquote></blockquote><blockquote type=3D"cite"><blo= ckquote type=3D"cite">if not os.path.exists(VDSM_CONF):<br></blockquote></b= lockquote><blockquote type=3D"cite"><blockquote type=3D"cite">logging.debug= ("makeConfig: generating conf.")<br></blockquote></blockquote><blockquote t= ype=3D"cite"><blockquote type=3D"cite">lines =3D []<br></blockquote></block= quote><blockquote type=3D"cite"><blockquote type=3D"cite">lines.append ("# = Auto-generated by vds_bootstrap at:" +<br></blockquote></blockquote><blockq= uote type=3D"cite"><blockquote type=3D"cite">str(datetime.datetime.now()) += "\n")<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote t= ype=3D"cite">lines.append ("\n")<br></blockquote></blockquote><blockquote t= ype=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquote><block= quote type=3D"cite"><blockquote type=3D"cite">lines.append ("[vars]\n") #Ad= ding ts for the coming scirpts.<br></blockquote></blockquote><blockquote ty= pe=3D"cite"><blockquote type=3D"cite">lines.append ("trust_store_path =3D "= + config.get('vars',<br></blockquote></blockquote><blockquote type=3D"cite= "><blockquote type=3D"cite">'trust_store_path') + "\n")<br></blockquote></b= lockquote><blockquote type=3D"cite"><blockquote type=3D"cite">lines.append = ("ssl =3D " + config.get('vars', 'ssl') + "\n")<br></blockquote></blockquot= e><blockquote type=3D"cite"><blockquote type=3D"cite">lines.append ("\n")<b= r></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"c= ite"><br></blockquote></blockquote><blockquote type=3D"cite"><blockquote ty= pe=3D"cite">lines.append ("[addresses]\n") #Adding mgt port for the coming = scirpts.<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote= type=3D"cite">lines.append ("management_port =3D " + config.get('addresses= ',<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite">'management_port') + "\n")<br></blockquote></blockquote><blockquo= te type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquote><b= lockquote type=3D"cite"><blockquote type=3D"cite">logging.debug("makeConfig= : writing the following to " + VDSM_CONF)<br></blockquote></blockquote><blo= ckquote type=3D"cite"><blockquote type=3D"cite">logging.debug(lines)<br></b= lockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">= fd, tmpName =3D tempfile.mkstemp()<br></blockquote></blockquote><blockquote= type=3D"cite"><blockquote type=3D"cite">f =3D os.fdopen(fd, 'w')<br></bloc= kquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">f.w= ritelines(lines)<br></blockquote></blockquote><blockquote type=3D"cite"><bl= ockquote type=3D"cite">f.close()<br></blockquote></blockquote><blockquote t= ype=3D"cite"><blockquote type=3D"cite">os.chmod(tmpName, 0644)<br></blockqu= ote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">shutil= .move(tmpName, VDSM_CONF)<br></blockquote></blockquote><blockquote type=3D"= cite"><blockquote type=3D"cite">else:<br></blockquote></blockquote><blockqu= ote type=3D"cite"><blockquote type=3D"cite">self.message =3D 'Basic configu= ration found, skipping this step'<br></blockquote></blockquote><blockquote = type=3D"cite"><blockquote type=3D"cite">logging.debug(self.message)<br></bl= ockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><= br></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"= cite">def createConf(self):<br></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite">"""<br></blockquote></blockquote><block= quote type=3D"cite"><blockquote type=3D"cite">Generate initial configuratio= n file for VDSM. Must run after package<br></blockquote></blockquote><block= quote type=3D"cite"><blockquote type=3D"cite">installation!<br></blockquote= blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"= blockquote type=3D"cite"><br></blockquote></blockquote><blockquote type=3D"= cite"><blockquote type=3D"cite">try:<br></blockquote></blockquote><blockquo= te type=3D"cite"><blockquote type=3D"cite">self._makeConfig()<br></blockquo= te></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">except = Exception, e:<br></blockquote></blockquote><blockquote type=3D"cite"><block= quote type=3D"cite">logging.error('', exc_info=3DTrue)<br></blockquote></bl= ockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockquo= te></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">^^^^ th= e interesting stuff is written to a log file, sitting in your<br></blockquo= te></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">/tmp or= a directory below it. Which module fails to be imported?<br></blockquote><= /blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></block= quote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">/tmp= /vds_bootstrap.210442.log:<br></blockquote></blockquote><blockquote type=3D= "cite"><blockquote type=3D"cite"><br></blockquote></blockquote><blockquote = type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 12:25:51 DEBUG Ins= talling libjpeg 0<br></blockquote></blockquote><blockquote type=3D"cite"><b= lockquote type=3D"cite">Thu, 28 Jun 2012 12:25:51 DEBUG ['/usr/bin/yum', '-= y', 'install',<br></blockquote></blockquote><blockquote type=3D"cite"><bloc= kquote type=3D"cite">'libjpeg']<br></blockquote></blockquote><blockquote ty= pe=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 12:25:53 DEBUG Loade= d plugins: langpacks, presto,<br></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite">refresh-packagekit, versionlock<br></bl= ockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">P= ackage libjpeg-turbo-1.2.0-1.fc17.x86_64 already installed and latest<br></= blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"= blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockq= uote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br><= /blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite= ">Which version of vdsm-bootstrap do you have installed? if it is not a<br>= </blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cit= e">4.10.something, I suggest you upgrade.<br></blockquote></blockquote><blo= ckquote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquo= te><blockquote type=3D"cite"><blockquote type=3D"cite"># rpm -qa | grep vds= m-bootstrap<br></blockquote></blockquote><blockquote type=3D"cite"><blockqu= ote type=3D"cite">vdsm-bootstrap-4.9.3.2-0.fc17.noarch<br></blockquote></bl= ockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockquo= te></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">That's = too old to install ovirt-3.1.<br></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite">Please retry with the one on the beta r= epo<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><a href=3D"http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.= 0/3.fc17/noarch/vdsm-bootstrap-4.10.0-3.fc17.noarch.rpm">http://kojipkgs.fe= doraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-bootstrap-4.10.0-3= .fc17.noarch.rpm</a><br></blockquote></blockquote><blockquote type=3D"cite"= blockquote type=3D"cite"><blockquote type=3D"cite">in createConf<br></block= quote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">self= ._makeConfig()<br></blockquote></blockquote><blockquote type=3D"cite"><bloc= kquote type=3D"cite">File<br></blockquote></blockquote><blockquote type=3D"= cite"><blockquote type=3D"cite">"/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef= -157654586da5.py", line 557,<br></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite">in _makeConfig<br></blockquote></blockq= uote><blockquote type=3D"cite"><blockquote type=3D"cite">from config import= config<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote = type=3D"cite">ImportError: No module named config<br></blockquote></blockqu= ote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></= blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockq= uote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">rpm -= U<br></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><a href=3D"http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.= 0/3.fc17/noarch/vdsm-bootstrap-4.10.0-3.fc17.noarch.rpm">http://kojipkgs.fe= doraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-bootstrap-4.10.0-3= .fc17.noarch.rpm</a><br></blockquote></blockquote><blockquote type=3D"cite"= package!<br></blockquote></blockquote><blockquote type=3D"cite"><blockquot= e type=3D"cite">Traceback (most recent call last):<br></blockquote></blockq= uote><blockquote type=3D"cite"><blockquote type=3D"cite">File "/tmp/vds_boo= tstrap_e27aad2f-4bb2-42f1-930e-6c7bab54fb1c.py",<br></blockquote></blockquo= te><blockquote type=3D"cite"><blockquote type=3D"cite">line 228, in checkRe= gistration<br></blockquote></blockquote><blockquote type=3D"cite"><blockquo= te type=3D"cite">rc =3D bool(deployUtil.yumListPackages(VDSM_NAME))<br></bl= ockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">A= ttributeError: 'module' object has no attribute 'yumListPackages'<br></bloc= kquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">Thu= , 28 Jun 2012 19:39:45 ERROR Unable to fetch vdsm package.<br></blockquote>= </blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">Please che= ck if host is registered to RHN, Satellite or other yum<br></blockquote></b= lockquote><blockquote type=3D"cite"><blockquote type=3D"cite">repository<br= blockquote type=3D"cite"><blockquote type=3D"cite"><a href=3D"http://lists.= ovirt.org/mailman/listinfo/users">http://lists.ovirt.org/mailman/listinfo/u= sers</a><br></blockquote></blockquote><blockquote type=3D"cite"><blockquote= type=3D"cite"><br></blockquote></blockquote><blockquote type=3D"cite"><blo= ckquote type=3D"cite">Sent from my Android phone. Please ignore typos.<br><= /blockquote></blockquote><blockquote type=3D"cite"><br></blockquote><blockq= uote type=3D"cite"><br></blockquote><blockquote type=3D"cite"><br></blockqu= ote><blockquote type=3D"cite">Med V=E4nliga H=E4lsningar<br></blockquote><b= lockquote type=3D"cite">---------------------------------------------------= ----------------------------<br></blockquote><blockquote type=3D"cite">Karl= i Sj=F6berg<br></blockquote><blockquote type=3D"cite">Swedish University of= Agricultural Sciences<br></blockquote><blockquote type=3D"cite">Box 7079 (= Visiting Address Kron=E5sv=E4gen 8)<br></blockquote><blockquote type=3D"cit= e">S-750 07 Uppsala, Sweden<br></blockquote><blockquote type=3D"cite">Phone= : +46-(0)18-67 15 66<br></blockquote><blockquote type=3D"cite"><a href=3D"m= ailto:karli.sjoberg@slu.se">karli.sjoberg@slu.se</a> <<a href=3D"mailto:= karli.sjoberg@adm.slu.se">mailto:karli.sjoberg@adm.slu.se</a>><br></bloc= kquote><blockquote type=3D"cite"><br></blockquote><blockquote type=3D"cite"= pe=3D"cite">_______________________________________________<br></blockquote= dth: 0px; font-size: medium; "><div><br class=3D"Apple-interchange-newline"=
<br></div><div>Med V=E4nliga H=E4lsningar<br>-----------------------------= --------------------------------------------------<br>Karli Sj=F6berg<br>Sw= edish University of Agricultural Sciences<br>Box 7079 (Visiting Address Kro= n=E5sv=E4gen 8)<br>S-750 07 Uppsala, Sweden<br>Phone: +46-(0)18-67 15= 66</div><div><a href=3D"mailto:karli.sjoberg@adm.slu.se">karli.sjoberg@slu= .se</a></div></span> </div> <br></body></html>=
--_000_CA7FD904222046069C7DD2BD9EC225B4sluse_--

On 06/29/2012 07:11 AM, Karli Sjöberg wrote:
29 jun 2012 kl. 12.54 skrev Itamar Heim:
On 06/29/2012 03:27 AM, Karli Sjöberg wrote:
28 jun 2012 kl. 22.11 skrev Doron Fediuck:
Please rm /tmp/*py* in your host. Older scripts may be interrupting.
# rm -f /tmp/*py* # rm -f /tmp/*log* # rm -f /tmp/*tmp*
"Re-Install"
/var/log/ovirt-engine/engine.log:
...
OK, one step forward and one step back. It seems as if the host installation went through, but after reboot, I have no contact with the web user interface. It thinks it´s active: # systemctl is-active ovirt-engine.service active
But I don´t even get to the initial portal chooser-page.
did you try to add the host the engine is running on or another physical machine?
The same. As I stated in the beginning, I want to be able to have the engine configured to execute power management for the rest of the hosts in the cluster, as per:
Source: http://lists.ovirt.org/pipermail/users/2012-February/000361.html "Yes, the ovirt backend does not shut down or power up any hosts directly, it can work only through vdsm. Therefore you need one running host per datacenter to be able to manage the rest of the hosts."
Adding the engine as a host in the cluster seems to be the way to achieve that.
1. power management is DC wide, not cluster. 2. you don't want the engine to be a host, unless you use the all-in-one plugin, which makes sure the node isn't rebooted while it is being added. 3. it will still won't help your problem, since it is local storage. 4. *if* you use the engine as a node (which may cause various issues), you need to make sure no VMs will run on it and it won't be an SPM (setting spm priority of 0 or -1 from the api) 5. you should probably also add the host from the api, using the no-reboot flag.
/Karli
/Karli
Sent from my Android phone. Please ignore typos.
-----Original Message----- From: =?iso-8859-1?Q?Karli_Sj=F6berg?= [Karli.Sjoberg@slu.se] Received: Thursday, 28 Jun 2012, 21:37 To: Itamar Heim [iheim@redhat.com]; Dan Kenigsberg [danken@redhat.com] CC: users@oVirt.org <mailto:users@oVirt.org> <mailto:users@oVirt.org> [users@ovirt.org] Subject: Re: [Users] BSTRAP component='CreateConf' status='FAIL' message='Basic configuration failed to import default values'
________________________________________ Från: Itamar Heim [iheim@redhat.com] Skickat: den 28 juni 2012 18:35 Till: Dan Kenigsberg Kopia: Karli Sjöberg; users@oVirt.org <mailto:users@oVirt.org> <mailto:users@oVirt.org> Ämne: Re: [Users] BSTRAP component='CreateConf' status='FAIL' message='Basic configuration failed to import default values'
On 06/28/2012 10:41 AM, Dan Kenigsberg wrote: On Thu, Jun 28, 2012 at 04:12:15PM +0200, Karli Sjöberg wrote:
28 jun 2012 kl. 15.55 skrev Dan Kenigsberg:
On Thu, Jun 28, 2012 at 12:32:27PM +0200, Karli Sjöberg wrote: Hi,
I am running Fedora 17 and added the ovirt beta repository to have access to webadmin addition, since F17 only comes with CLI by default.
The action in question "CreateConf" looks like:
/usr/share/vdsm-bootstrap/vds_bootstrap.py
def _makeConfig(self): import datetime from config import config
if not os.path.exists(VDSM_CONF): logging.debug("makeConfig: generating conf.") lines = [] lines.append ("# Auto-generated by vds_bootstrap at:" + str(datetime.datetime.now()) + "\n") lines.append ("\n")
lines.append ("[vars]\n") #Adding ts for the coming scirpts. lines.append ("trust_store_path = " + config.get('vars', 'trust_store_path') + "\n") lines.append ("ssl = " + config.get('vars', 'ssl') + "\n") lines.append ("\n")
lines.append ("[addresses]\n") #Adding mgt port for the coming scirpts. lines.append ("management_port = " + config.get('addresses', 'management_port') + "\n")
logging.debug("makeConfig: writing the following to " + VDSM_CONF) logging.debug(lines) fd, tmpName = tempfile.mkstemp() f = os.fdopen(fd, 'w') f.writelines(lines) f.close() os.chmod(tmpName, 0644) shutil.move(tmpName, VDSM_CONF) else: self.message = 'Basic configuration found, skipping this step' logging.debug(self.message)
def createConf(self): """ Generate initial configuration file for VDSM. Must run after package installation! """ self.message = 'Basic configuration set' self.rc = True self.status = 'OK'
try: self._makeConfig() except Exception, e: logging.error('', exc_info=True)
^^^^ the interesting stuff is written to a log file, sitting in your /tmp or a directory below it. Which module fails to be imported?
/tmp/vds_bootstrap.210442.log:
Thu, 28 Jun 2012 12:25:51 DEBUG Installing libjpeg 0 Thu, 28 Jun 2012 12:25:51 DEBUG ['/usr/bin/yum', '-y', 'install', 'libjpeg'] Thu, 28 Jun 2012 12:25:53 DEBUG Loaded plugins: langpacks, presto, refresh-packagekit, versionlock Package libjpeg-turbo-1.2.0-1.fc17.x86_64 already installed and latest version Nothing to do
Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG ['/bin/rpm', '-q', 'libjpeg'] Thu, 28 Jun 2012 12:25:53 DEBUG package libjpeg is not installed
Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 ERROR Traceback (most recent call last): File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594, in createConf self._makeConfig() File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 557, in _makeConfig from config import config ImportError: No module named config Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 ERROR createConf failed Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG **** End VDS Validation ****
Which version of vdsm-bootstrap do you have installed? if it is not a 4.10.something, I suggest you upgrade.
# rpm -qa | grep vdsm-bootstrap vdsm-bootstrap-4.9.3.2-0.fc17.noarch
That's too old to install ovirt-3.1. Please retry with the one on the beta repo http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-b...
indeed. i think the error is not about libjpeg at all, which is probably provided by libjpeg-turbo as yum install for it suggest. so just a too old bootstrap file as danken suggests, causing this which is the actual error: Traceback (most recent call last): File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594, in createConf self._makeConfig() File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 557, in _makeConfig from config import config ImportError: No module named config
rpm -U http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-b...
Then, after next "Re-Install"
more /tmp/vds_bootstrap.470161.log Thu, 28 Jun 2012 19:39:45 DEBUG **** Start VDS Validation **** Thu, 28 Jun 2012 19:39:45 DEBUG Entered VdsValidation(subject = '172.22.8.14', random_num = 'e27aad2f-4bb2-42f1-930e-6c7bab54fb1c', rev_num = 'None', installVirtualizationService = 'True',installGlusterService = 'False') Thu, 28 Jun 2012 19:39:45 ERROR checkRegistration: Error searching for VDSM package! Traceback (most recent call last): File "/tmp/vds_bootstrap_e27aad2f-4bb2-42f1-930e-6c7bab54fb1c.py", line 228, in checkRegistration rc = bool(deployUtil.yumListPackages(VDSM_NAME)) AttributeError: 'module' object has no attribute 'yumListPackages' Thu, 28 Jun 2012 19:39:45 ERROR Unable to fetch vdsm package. Please check if host is registered to RHN, Satellite or other yum repository Thu, 28 Jun 2012 19:39:45 DEBUG Thu, 28 Jun 2012 19:39:45 ERROR checkRegistration test failed Thu, 28 Jun 2012 19:39:45 DEBUG Thu, 28 Jun 2012 19:39:45 DEBUG **** End VDS Validation **** _______________________________________________ Users mailing list Users@ovirt.org <mailto:Users@ovirt.org> <mailto:Users@ovirt.org> http://lists.ovirt.org/mailman/listinfo/users
Sent from my Android phone. Please ignore typos.
Med Vänliga Hälsningar ------------------------------------------------------------------------------- Karli Sjöberg Swedish University of Agricultural Sciences Box 7079 (Visiting Address Kronåsvägen 8) S-750 07 Uppsala, Sweden Phone: +46-(0)18-67 15 66 karli.sjoberg@slu.se <mailto:karli.sjoberg@slu.se> <mailto:karli.sjoberg@adm.slu.se>
_______________________________________________ Users mailing list Users@ovirt.org <mailto:Users@ovirt.org> http://lists.ovirt.org/mailman/listinfo/users
Med Vänliga Hälsningar ------------------------------------------------------------------------------- Karli Sjöberg Swedish University of Agricultural Sciences Box 7079 (Visiting Address Kronåsvägen 8) S-750 07 Uppsala, Sweden Phone: +46-(0)18-67 15 66 karli.sjoberg@slu.se <mailto:karli.sjoberg@adm.slu.se>

On 06/29/2012 03:27 AM, Karli Sj=F6berg wrote:<br></blockquote></blockquot= e><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"c= ite"><br></blockquote></blockquote></blockquote><blockquote type=3D"cite"><=
<blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"ci= te"><blockquote type=3D"cite">Older scripts may be interrupting.<br></block= quote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><blo= ckquote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquo= te></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockq= uote type=3D"cite"># rm -f /tmp/*py*<br></blockquote></blockquote></blockqu= ote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D= "cite"># rm -f /tmp/*log*<br></blockquote></blockquote></blockquote><blockq= uote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"># rm= -f /tmp/*tmp*<br></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockqu= ote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D= "cite"><blockquote type=3D"cite"><br></blockquote></blockquote></blockquote= <blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"ci= te">"Re-Install"<br></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockqu= ote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D= "cite"><blockquote type=3D"cite"><br></blockquote></blockquote></blockquote= <blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"ci= te">/var/log/ovirt-engine/engine.log:<br></blockquote></blockquote></blockq= uote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite"><br></blockquote></blockquote></blockquote><blockquote type=3D"ci= te"><blockquote type=3D"cite">...<br></blockquote></blockquote><blockquote = type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquote><bloc= kquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><b= r></blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockqu= ote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquote><= /blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote= type=3D"cite">OK, one step forward and one step back. It seems as if the h= ost<br></blockquote></blockquote></blockquote><blockquote type=3D"cite"><bl= ockquote type=3D"cite"><blockquote type=3D"cite">installation went through,= but after reboot, I have no contact with the<br></blockquote></blockquote>= </blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquot= e type=3D"cite">web user interface. It thinks it=B4s active:<br></blockquot= e></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"c= ite"><blockquote type=3D"cite"># systemctl is-active ovirt-engine.service<b= r></blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockqu= ote type=3D"cite"><blockquote type=3D"cite">active<br></blockquote></blockq= uote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><bloc= kquote type=3D"cite"><br></blockquote></blockquote></blockquote><blockquote= type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">But I do= n=B4t even get to the initial portal chooser-page.<br></blockquote></blockq= uote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br><= /blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite= ">did you try to add the host the engine is running on or another physical<= br></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"= cite">machine?<br></blockquote></blockquote><blockquote type=3D"cite"><br><= /blockquote><blockquote type=3D"cite">The same. As I stated in the beginnin= g, I want to be able to have the<br></blockquote><blockquote type=3D"cite">= engine configured to execute power management for the rest of the hosts<br>= </blockquote><blockquote type=3D"cite">in the cluster, as per:<br></blockqu= ote><blockquote type=3D"cite"><br></blockquote><blockquote type=3D"cite">So= urce: <a href=3D"http://lists.ovirt.org/pipermail/users/2012-February/00036= 1.html">http://lists.ovirt.org/pipermail/users/2012-February/000361.html</a= <br></blockquote><blockquote type=3D"cite">"Yes, the ovirt backend does no= t shut down or power up any hosts<br></blockquote><blockquote type=3D"cite"= directly, it can work only through vdsm. Therefore you need one running<br= </blockquote><blockquote type=3D"cite">host per datacenter to be able to m= anage the rest of the hosts."<br></blockquote><blockquote type=3D"cite"><br= </blockquote><blockquote type=3D"cite">Adding the engine as a host in the = cluster seems to be the way to<br></blockquote><blockquote type=3D"cite">ac= hieve that.<br></blockquote><br>1. power management is DC wide, not cluster= .<br>2. you don't want the engine to be a host, unless you use the all-in-o= ne <br>plugin, which makes sure the node isn't rebooted while it is being a=
<blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"ci= te"><br></blockquote></blockquote></blockquote><blockquote type=3D"cite"><b= lockquote type=3D"cite"><blockquote type=3D"cite">/Karli<br></blockquote></=
<blockquote type=3D"cite"><br></blockquote></blockquote></blockquote><bloc= kquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><b= lockquote type=3D"cite"><br></blockquote></blockquote></blockquote></blockq= uote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite">Sent from my Android phone. Please igno= re typos.<br></blockquote></blockquote></blockquote></blockquote><blockquot= e type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockq= uote type=3D"cite"><br></blockquote></blockquote></blockquote></blockquote>= <blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cit= e"><blockquote type=3D"cite">-----Original Message-----<br></blockquote></b= lockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote t= ype=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">From: =3D?= iso-8859-1?Q?Karli_Sj=3DF6berg?=3D [Karli.Sjoberg@slu.se]<br></blockquote><= /blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote= type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">Received= : Thursday, 28 Jun 2012, 21:37<br></blockquote></blockquote></blockquote></=
</blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"ci= te"><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></=
<br></blockquote></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite">On Thu, Jun 28, 2012 at 12:32:27PM +0200, Karli Sj=F6berg wrot= e:<br></blockquote></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite">Hi,<br></blockquote></blockquote></blockquote></blockquote><bl= ockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">= <blockquote type=3D"cite"><br></blockquote></blockquote></blockquote></bloc= kquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite">I am running Fedora 17 and added the ov= irt beta repository to have<br></blockquote></blockquote></blockquote></blo= ckquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote typ= e=3D"cite"><blockquote type=3D"cite">access to webadmin addition, since F17= only comes with CLI by default.<br></blockquote></blockquote></blockquote>= </blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquot= e type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquote></b= lockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">= <blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></bloc= kquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockqu= ote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><block= quote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><br= </blockquote></blockquote></blockquote></blockquote><blockquote type=3D"ci= te"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D= "cite"><br></blockquote></blockquote></blockquote></blockquote><blockquote = type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquo= te type=3D"cite"><br></blockquote></blockquote></blockquote></blockquote><b= lockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"= <blockquote type=3D"cite">The action in question "CreateConf" looks like:<= br></blockquote></blockquote></blockquote></blockquote><blockquote type=3D"= cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite"><br></blockquote></blockquote></blockquote></blockquote><blockquo= te type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><block= quote type=3D"cite">/usr/share/vdsm-bootstrap/vds_bootstrap.py<br></blockqu= ote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><block= quote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><br= </blockquote></blockquote></blockquote></blockquote><blockquote type=3D"ci= te"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D= "cite">def _makeConfig(self):<br></blockquote></blockquote></blockquote></b= lockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite"><blockquote type=3D"cite">import datetime<br></blockquote></bl= ockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote ty=
<blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"ci= te">logging.debug("makeConfig: generating conf.")<br></blockquote></blockqu= ote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D= "cite"><blockquote type=3D"cite"><blockquote type=3D"cite">lines =3D []<br>= </blockquote></blockquote></blockquote></blockquote><blockquote type=3D"cit= e"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"= cite">lines.append ("# Auto-generated by vds_bootstrap at:" +<br></blockquo= te></blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockq= uote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">str(= datetime.datetime.now()) + "\n")<br></blockquote></blockquote></blockquote>= </blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquot= e type=3D"cite"><blockquote type=3D"cite">lines.append ("\n")<br></blockquo= te></blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockq= uote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><br>= </blockquote></blockquote></blockquote></blockquote><blockquote type=3D"cit= e"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"= cite">lines.append ("[vars]\n") #Adding ts for the coming scirpts.<br></blo= ckquote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><b= lockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"= lines.append ("trust_store_path =3D " + config.get('vars',<br></blockquote= </blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquo= te type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">'trust= _store_path') + "\n")<br></blockquote></blockquote></blockquote></blockquot= e><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"c= ite"><blockquote type=3D"cite">lines.append ("ssl =3D " + config.get('vars'= , 'ssl') + "\n")<br></blockquote></blockquote></blockquote></blockquote><bl= ockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">= <blockquote type=3D"cite">lines.append ("\n")<br></blockquote></blockquote>= </blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cit= e"><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></b= lockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote t= ype=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">lines.appe= nd ("[addresses]\n") #Adding mgt port for the coming scirpts.<br></blockquo= te></blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockq= uote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">line= s.append ("management_port =3D " + config.get('addresses',<br></blockquote>= </blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquot= e type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">'manage= ment_port') + "\n")<br></blockquote></blockquote></blockquote></blockquote>= <blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cit= e"><blockquote type=3D"cite"><br></blockquote></blockquote></blockquote></b= lockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite"><blockquote type=3D"cite">logging.debug("makeConfig: writing t= he following to " + VDSM_CONF)<br></blockquote></blockquote></blockquote></=
<blockquote type=3D"cite">f.close()<br></blockquote></blockquote></blockqu= ote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><block= quote type=3D"cite"><blockquote type=3D"cite">os.chmod(tmpName, 0644)<br></=
<blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"ci= te">shutil.move(tmpName, VDSM_CONF)<br></blockquote></blockquote></blockquo= te></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockq= uote type=3D"cite"><blockquote type=3D"cite">else:<br></blockquote></blockq= uote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">self.message = =3D 'Basic configuration found, skipping this step'<br></blockquote></block= quote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">logging.debug= (self.message)<br></blockquote></blockquote></blockquote></blockquote><bloc= kquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><b= lockquote type=3D"cite"><br></blockquote></blockquote></blockquote></blockq= uote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite">def createConf(self):<br></blockquote><= /blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote= type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">"""<br><= /blockquote></blockquote></blockquote></blockquote><blockquote type=3D"cite= "><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"c= ite">Generate initial configuration file for VDSM. Must run after package<b= r></blockquote></blockquote></blockquote></blockquote><blockquote type=3D"c= ite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite">installation!<br></blockquote></blockquote></blockquote></blockqu= ote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D= "cite"><blockquote type=3D"cite">"""<br></blockquote></blockquote></blockqu= ote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><block= quote type=3D"cite"><blockquote type=3D"cite">self.message =3D 'Basic confi= guration set'<br></blockquote></blockquote></blockquote></blockquote><block= quote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><bl= ockquote type=3D"cite">self.rc =3D True<br></blockquote></blockquote></bloc= kquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><bl= ockquote type=3D"cite"><blockquote type=3D"cite">self.status =3D 'OK'<br></=
<blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"ci= te"><br></blockquote></blockquote></blockquote></blockquote><blockquote typ= e=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote = type=3D"cite">try:<br></blockquote></blockquote></blockquote></blockquote><=
</blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"ci= te"><blockquote type=3D"cite"><blockquote type=3D"cite">except Exception, e= :<br></blockquote></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite">logging.error('', exc_info=3DTrue)<br></blockquote></blockquot= e></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"c= ite"><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockquote><= /blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote= type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">^^^^ the= interesting stuff is written to a log file, sitting in your<br></blockquot= e></blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockqu= ote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">/tmp = or a directory below it. Which module fails to be imported?<br></blockquote= </blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquo= te type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><br></=
<blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"ci= te">/tmp/vds_bootstrap.210442.log:<br></blockquote></blockquote></blockquot= e></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockqu= ote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquote><= /blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite= "><blockquote type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 12:2= 5:51 DEBUG Installing libjpeg 0<br></blockquote></blockquote></blockquote><= /blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote= type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 12:25:51 DEBUG ['= /usr/bin/yum', '-y', 'install',<br></blockquote></blockquote></blockquote><= /blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote= type=3D"cite"><blockquote type=3D"cite">'libjpeg']<br></blockquote></block= quote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2= 012 12:25:53 DEBUG Loaded plugins: langpacks, presto,<br></blockquote></blo= ckquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote typ= e=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">refresh-pack= agekit, versionlock<br></blockquote></blockquote></blockquote></blockquote>= <blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cit= e"><blockquote type=3D"cite">Package libjpeg-turbo-1.2.0-1.fc17.x86_64 alre= ady installed and latest<br></blockquote></blockquote></blockquote></blockq= uote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite">version<br></blockquote></blockquote></=
<blockquote type=3D"cite"><blockquote type=3D"cite">Nothing to do<br></blo= ckquote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><b= lockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"= <br></blockquote></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite">Thu, 28 Jun 2012 12:25:53 DEBUG<br></blockquote></blockquote><= /blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite= "><blockquote type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 12:2= 5:53 DEBUG ['/bin/rpm', '-q', 'libjpeg']<br></blockquote></blockquote></blo= ckquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><b= lockquote type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 12:25:53= DEBUG package libjpeg is not installed<br></blockquote></blockquote></bloc= kquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><bl= ockquote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockqu= ote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D= "cite"><blockquote type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012= 12:25:53 DEBUG<br></blockquote></blockquote></blockquote></blockquote><blo= ckquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><=
File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py",<br></bl= ockquote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><=
</blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquo= te type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><a hre= f=3D"http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/= vdsm-bootstrap-4.10.0-3.fc17.noarch.rpm">http://kojipkgs.fedoraproject.org/= /packages/vdsm/4.10.0/3.fc17/noarch/vdsm-bootstrap-4.10.0-3.fc17.noarch.rpm= </a><br></blockquote></blockquote></blockquote></blockquote><blockquote typ= e=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote = type=3D"cite"><br></blockquote></blockquote></blockquote></blockquote><bloc= kquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><b= lockquote type=3D"cite"><br></blockquote></blockquote></blockquote></blockq= uote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite">indeed.<br></blockquote></blockquote></=
<blockquote type=3D"cite"><blockquote type=3D"cite">i think the error is n= ot about libjpeg at all, which is probably<br></blockquote></blockquote></b= lockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">= <blockquote type=3D"cite"><blockquote type=3D"cite">provided by libjpeg-tur= bo as yum install for it suggest.<br></blockquote></blockquote></blockquote= </blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquo= te type=3D"cite"><blockquote type=3D"cite">so just a too old bootstrap file= as danken suggests, causing this which<br></blockquote></blockquote></bloc= kquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><bl= ockquote type=3D"cite"><blockquote type=3D"cite">is the actual error:<br></=
<blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"ci= te">Traceback (most recent call last):<br></blockquote></blockquote></block= quote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blo= ckquote type=3D"cite"><blockquote type=3D"cite">File<br></blockquote></bloc= kquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">"/tmp/vds_boo= tstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594,<br></blockquote>= </blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquot= e type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">in crea= teConf<br></blockquote></blockquote></blockquote></blockquote><blockquote t= ype=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquot= e type=3D"cite">self._makeConfig()<br></blockquote></blockquote></blockquot= e></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockqu= ote type=3D"cite"><blockquote type=3D"cite">File<br></blockquote></blockquo= te></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"= cite"><blockquote type=3D"cite"><blockquote type=3D"cite">"/tmp/vds_bootstr= ap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 557,<br></blockquote></bl= ockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote ty=
<blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"ci= te"><blockquote type=3D"cite">rc =3D bool(deployUtil.yumListPackages(VDSM_N= AME))<br></blockquote></blockquote></blockquote></blockquote><blockquote ty=
Users@ovirt.org</a> <<a href=3D"mailto:Users@ovirt.org">mailto:Users@ov= irt.org</a>> <<a href=3D"mailto:Users@ovirt.org">mailto:Users@ovirt.o= rg</a>><br></blockquote></blockquote></blockquote></blockquote><blockquo= te type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><block= quote type=3D"cite"><a href=3D"http://lists.ovirt.org/mailman/listinfo/user= s">http://lists.ovirt.org/mailman/listinfo/users</a><br></blockquote></bloc= kquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockqu= ote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><block= quote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">Sen= t from my Android phone. Please ignore typos.<br></blockquote></blockquote>= </blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cit= e"><blockquote type=3D"cite"><br></blockquote></blockquote></blockquote><bl= ockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">= <br></blockquote></blockquote></blockquote><blockquote type=3D"cite"><block= quote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquote= </blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquo= te type=3D"cite">Med V=E4nliga H=E4lsningar<br></blockquote></blockquote></=
</div></blockquote></div><br><div> <span class=3D"Apple-style-span" style=3D"border-collapse: separate; color:= rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: no= rmal; font-weight: normal; letter-spacing: normal; line-height: normal; orp= hans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; = white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizonta= l-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorati= ons-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-wi=
--_000_8A0A9721953E4DA3B3D1AF5B7B6C0143sluse_ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable 29 jun 2012 kl. 13.16 skrev Itamar Heim: On 06/29/2012 07:11 AM, Karli Sj=F6berg wrote: 29 jun 2012 kl. 12.54 skrev Itamar Heim: On 06/29/2012 03:27 AM, Karli Sj=F6berg wrote: 28 jun 2012 kl. 22.11 skrev Doron Fediuck: Please rm /tmp/*py* in your host. Older scripts may be interrupting. # rm -f /tmp/*py* # rm -f /tmp/*log* # rm -f /tmp/*tmp* "Re-Install" /var/log/ovirt-engine/engine.log: ... OK, one step forward and one step back. It seems as if the host installation went through, but after reboot, I have no contact with the web user interface. It thinks it=B4s active: # systemctl is-active ovirt-engine.service active But I don=B4t even get to the initial portal chooser-page. did you try to add the host the engine is running on or another physical machine? The same. As I stated in the beginning, I want to be able to have the engine configured to execute power management for the rest of the hosts in the cluster, as per: Source: http://lists.ovirt.org/pipermail/users/2012-February/000361.html "Yes, the ovirt backend does not shut down or power up any hosts directly, it can work only through vdsm. Therefore you need one running host per datacenter to be able to manage the rest of the hosts." Adding the engine as a host in the cluster seems to be the way to achieve that. 1. power management is DC wide, not cluster. 2. you don't want the engine to be a host, unless you use the all-in-one plugin, which makes sure the node isn't rebooted while it is being added. 3. it will still won't help your problem, since it is local storage. 4. *if* you use the engine as a node (which may cause various issues), you need to make sure no VMs will run on it and it won't be an SPM (setting spm priority of 0 or -1 from the api) 5. you should probably also add the host from the api, using the no-reboot flag. Let me explain a little to make you better understand my reasoning behind t= his configuration. We work with segmented, separated networks. One network for public access, = one for storage traffic, one for management and so on. That means that if t= he nodes themselves have to do their own power-management, the nodes would = require three interfaces each, and the metal we are using for hosts just do= n=B4t have that. But if we can use the backend to do that, the hosts would = only require two interfaces, which most 1U servers are equipped with as sta= ndard (plus one iLO/IPMI/whatev), so we can use them as hosts without issue= . Then the backend has one extra interface that it can use to communicate o= ver the power management network to the respective service processor with. Is there a "better" way to achieve what we are aiming for? 2. Then I would like to use that. Where can I find a all-in-one plugin that= fits into the install? 3. I may have misunderstood, but I will be using NFS shared storage. 4. Precisely what I was thinking. Thanks for the SPM-hint! 5. OK, sure. Is it still necessary to have the all-in-one plugin installed = in that case? I would like to say that I=B4m loving oVirt this far, it is truly an amazin= g piece of software. Thank you all, and thank you for your help and your kn= owledge! /Karli /Karli /Karli Sent from my Android phone. Please ignore typos. -----Original Message----- From: =3D?iso-8859-1?Q?Karli_Sj=3DF6berg?=3D [Karli.Sjoberg@slu.se] Received: Thursday, 28 Jun 2012, 21:37 To: Itamar Heim [iheim@redhat.com]; Dan Kenigsberg [danken@redhat.com] CC: users@oVirt.org<mailto:users@oVirt.org> <mailto:users@oVirt.org> <mailto:users@oVirt.org> [users@ovirt.org] Subject: Re: [Users] BSTRAP component=3D'CreateConf' status=3D'FAIL' message=3D'Basic configuration failed to import default values' ________________________________________ Fr=E5n: Itamar Heim [iheim@redhat.com] Skickat: den 28 juni 2012 18:35 Till: Dan Kenigsberg Kopia: Karli Sj=F6berg; users@oVirt.org<mailto:users@oVirt.org> <mailto:use= rs@oVirt.org> <mailto:users@oVirt.org> =C4mne: Re: [Users] BSTRAP component=3D'CreateConf' status=3D'FAIL' message=3D'Basic configuration failed to import default values' On 06/28/2012 10:41 AM, Dan Kenigsberg wrote: On Thu, Jun 28, 2012 at 04:12:15PM +0200, Karli Sj=F6berg wrote: 28 jun 2012 kl. 15.55 skrev Dan Kenigsberg: On Thu, Jun 28, 2012 at 12:32:27PM +0200, Karli Sj=F6berg wrote: Hi, I am running Fedora 17 and added the ovirt beta repository to have access to webadmin addition, since F17 only comes with CLI by default. The action in question "CreateConf" looks like: /usr/share/vdsm-bootstrap/vds_bootstrap.py def _makeConfig(self): import datetime from config import config if not os.path.exists(VDSM_CONF): logging.debug("makeConfig: generating conf.") lines =3D [] lines.append ("# Auto-generated by vds_bootstrap at:" + str(datetime.datetime.now()) + "\n") lines.append ("\n") lines.append ("[vars]\n") #Adding ts for the coming scirpts. lines.append ("trust_store_path =3D " + config.get('vars', 'trust_store_path') + "\n") lines.append ("ssl =3D " + config.get('vars', 'ssl') + "\n") lines.append ("\n") lines.append ("[addresses]\n") #Adding mgt port for the coming scirpts. lines.append ("management_port =3D " + config.get('addresses', 'management_port') + "\n") logging.debug("makeConfig: writing the following to " + VDSM_CONF) logging.debug(lines) fd, tmpName =3D tempfile.mkstemp() f =3D os.fdopen(fd, 'w') f.writelines(lines) f.close() os.chmod(tmpName, 0644) shutil.move(tmpName, VDSM_CONF) else: self.message =3D 'Basic configuration found, skipping this step' logging.debug(self.message) def createConf(self): """ Generate initial configuration file for VDSM. Must run after package installation! """ self.message =3D 'Basic configuration set' self.rc =3D True self.status =3D 'OK' try: self._makeConfig() except Exception, e: logging.error('', exc_info=3DTrue) ^^^^ the interesting stuff is written to a log file, sitting in your /tmp or a directory below it. Which module fails to be imported? /tmp/vds_bootstrap.210442.log: Thu, 28 Jun 2012 12:25:51 DEBUG Installing libjpeg 0 Thu, 28 Jun 2012 12:25:51 DEBUG ['/usr/bin/yum', '-y', 'install', 'libjpeg'] Thu, 28 Jun 2012 12:25:53 DEBUG Loaded plugins: langpacks, presto, refresh-packagekit, versionlock Package libjpeg-turbo-1.2.0-1.fc17.x86_64 already installed and latest version Nothing to do Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG ['/bin/rpm', '-q', 'libjpeg'] Thu, 28 Jun 2012 12:25:53 DEBUG package libjpeg is not installed Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 ERROR Traceback (most recent call last): File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594, in createConf self._makeConfig() File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 557, in _makeConfig from config import config ImportError: No module named config Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 ERROR createConf failed Thu, 28 Jun 2012 12:25:53 DEBUG Thu, 28 Jun 2012 12:25:53 DEBUG **** End VDS Validation **** Which version of vdsm-bootstrap do you have installed? if it is not a 4.10.something, I suggest you upgrade. # rpm -qa | grep vdsm-bootstrap vdsm-bootstrap-4.9.3.2-0.fc17.noarch That's too old to install ovirt-3.1. Please retry with the one on the beta repo http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-= bootstrap-4.10.0-3.fc17.noarch.rpm indeed. i think the error is not about libjpeg at all, which is probably provided by libjpeg-turbo as yum install for it suggest. so just a too old bootstrap file as danken suggests, causing this which is the actual error: Traceback (most recent call last): File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 594, in createConf self._makeConfig() File "/tmp/vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py", line 557, in _makeConfig from config import config ImportError: No module named config rpm -U http://kojipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-= bootstrap-4.10.0-3.fc17.noarch.rpm Then, after next "Re-Install" more /tmp/vds_bootstrap.470161.log Thu, 28 Jun 2012 19:39:45 DEBUG **** Start VDS Validation **** Thu, 28 Jun 2012 19:39:45 DEBUG Entered VdsValidation(subject =3D '172.22.8.14', random_num =3D 'e27aad2f-4bb2-42f1-930e-6c7bab54fb1c', rev_num =3D 'None', installVirtualizationService =3D 'True',installGlusterService =3D 'False') Thu, 28 Jun 2012 19:39:45 ERROR checkRegistration: Error searching for VDSM package! Traceback (most recent call last): File "/tmp/vds_bootstrap_e27aad2f-4bb2-42f1-930e-6c7bab54fb1c.py", line 228, in checkRegistration rc =3D bool(deployUtil.yumListPackages(VDSM_NAME)) AttributeError: 'module' object has no attribute 'yumListPackages' Thu, 28 Jun 2012 19:39:45 ERROR Unable to fetch vdsm package. Please check if host is registered to RHN, Satellite or other yum repository Thu, 28 Jun 2012 19:39:45 DEBUG Thu, 28 Jun 2012 19:39:45 ERROR checkRegistration test failed Thu, 28 Jun 2012 19:39:45 DEBUG Thu, 28 Jun 2012 19:39:45 DEBUG **** End VDS Validation **** _______________________________________________ Users mailing list Users@ovirt.org<mailto:Users@ovirt.org> <mailto:Users@ovirt.org> <mailto:Us= ers@ovirt.org> http://lists.ovirt.org/mailman/listinfo/users Sent from my Android phone. Please ignore typos. Med V=E4nliga H=E4lsningar ---------------------------------------------------------------------------= ---- Karli Sj=F6berg Swedish University of Agricultural Sciences Box 7079 (Visiting Address Kron=E5sv=E4gen 8) S-750 07 Uppsala, Sweden Phone: +46-(0)18-67 15 66 karli.sjoberg@slu.se<mailto:karli.sjoberg@slu.se> <mailto:karli.sjoberg@slu= .se> <mailto:karli.sjoberg@adm.slu.se> _______________________________________________ Users mailing list Users@ovirt.org<mailto:Users@ovirt.org> <mailto:Users@ovirt.org> http://lists.ovirt.org/mailman/listinfo/users Med V=E4nliga H=E4lsningar ---------------------------------------------------------------------------= ---- Karli Sj=F6berg Swedish University of Agricultural Sciences Box 7079 (Visiting Address Kron=E5sv=E4gen 8) S-750 07 Uppsala, Sweden Phone: +46-(0)18-67 15 66 karli.sjoberg@slu.se<mailto:karli.sjoberg@slu.se> <mailto:karli.sjoberg@adm= .slu.se> Med V=E4nliga H=E4lsningar ---------------------------------------------------------------------------= ---- Karli Sj=F6berg Swedish University of Agricultural Sciences Box 7079 (Visiting Address Kron=E5sv=E4gen 8) S-750 07 Uppsala, Sweden Phone: +46-(0)18-67 15 66 karli.sjoberg@slu.se<mailto:karli.sjoberg@adm.slu.se> --_000_8A0A9721953E4DA3B3D1AF5B7B6C0143sluse_ Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <html><head></head><body style=3D"word-wrap: break-word; -webkit-nbsp-mode:= space; -webkit-line-break: after-white-space; "><br><div><div>29 jun 2012 = kl. 13.16 skrev Itamar Heim:</div><br class=3D"Apple-interchange-newline"><= blockquote type=3D"cite"><div>On 06/29/2012 07:11 AM, Karli Sj=F6berg wrote= :<br><blockquote type=3D"cite"><br></blockquote><blockquote type=3D"cite">2= 9 jun 2012 kl. 12.54 skrev Itamar Heim:<br></blockquote><blockquote type=3D= "cite"><br></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"= blockquote type=3D"cite"><blockquote type=3D"cite">28 jun 2012 kl. 22.11 sk= rev Doron Fediuck:<br></blockquote></blockquote></blockquote><blockquote ty= pe=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><br></block= quote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">Please rm /tm= p/*py* in your host.<br></blockquote></blockquote></blockquote></blockquote= dded.</div></blockquote><blockquote type=3D"cite"><div>3. it will still won= 't help your problem, since it is local storage.<br>4. *if* you use the eng= ine as a node (which may cause various issues), <br>you need to make sure n= o VMs will run on it and it won't be an SPM <br>(setting spm priority of 0 = or -1 from the api)<br>5. you should probably also add the host from the ap= i, using the <br>no-reboot flag.<br></div></blockquote><div><br></div><div>= Let me explain a little to make you better understand my reasoning behind t= his configuration.</div><div><br></div><div>We work with segmented, separat= ed networks. One network for public access, one for storage traffic, one fo= r management and so on. That means that if the nodes themselves have to do = their own power-management, the nodes would require three interfaces each, = and the metal we are using for hosts just don=B4t have that. But if we can = use the backend to do that, the hosts would only require two interfaces, wh= ich most 1U servers are equipped with as standard (plus one iLO/IPMI/whatev= ), so we can use them as hosts without issue. Then the backend has one extr= a interface that it can use to communicate over the power management networ= k to the respective service processor with.</div><div><br></div><div>Is the= re a "better" way to achieve what we are aiming for?</div><div><br></div><d= iv>2. Then I would like to use that. Where can I find a all-in-one plugin t= hat fits into the install?</div>3. I may have misunderstood, but I will be = using NFS shared storage.</div><div>4. Precisely what I was thinking. Thank= s for the SPM-hint!</div><div>5. OK, sure. Is it still necessary to have th= e all-in-one plugin installed in that case?</div><div><br></div><div>I woul= d like to say that I=B4m loving oVirt this far, it is truly an amazing piec= e of software. Thank you all, and thank you for your help and your knowledg= e!</div><div><br></div><div>/Karli</div><div><br><blockquote type=3D"cite">= <div><br><blockquote type=3D"cite"><br></blockquote><blockquote type=3D"cit= e">/Karli<br></blockquote><blockquote type=3D"cite"><br></blockquote><block= quote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquote= blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"= blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote = type=3D"cite"><blockquote type=3D"cite">To: Itamar Heim [iheim@redhat.com];= Dan Kenigsberg [danken@redhat.com]<br></blockquote></blockquote></blockquo= te></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockq= uote type=3D"cite"><blockquote type=3D"cite">CC: <a href=3D"mailto:users@oV= irt.org">users@oVirt.org</a> <<a href=3D"mailto:users@oVirt.org">mailto:= users@oVirt.org</a>><br></blockquote></blockquote></blockquote></blockqu= ote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D= "cite"><blockquote type=3D"cite"><<a href=3D"mailto:users@oVirt.org">mai= lto:users@oVirt.org</a>> [users@ovirt.org]<br></blockquote></blockquote>= </blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cit= e"><blockquote type=3D"cite"><blockquote type=3D"cite">Subject: Re: [Users]= BSTRAP component=3D'CreateConf' status=3D'FAIL'<br></blockquote></blockquo= te></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"= cite"><blockquote type=3D"cite"><blockquote type=3D"cite">message=3D'Basic = configuration failed to import default values'<br></blockquote></blockquote= blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote = type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">_________= _______________________________<br></blockquote></blockquote></blockquote><= /blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote= type=3D"cite"><blockquote type=3D"cite">Fr=E5n: Itamar Heim [iheim@redhat.= com]<br></blockquote></blockquote></blockquote></blockquote><blockquote typ= e=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote = type=3D"cite">Skickat: den 28 juni 2012 18:35<br></blockquote></blockquote>= </blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cit= e"><blockquote type=3D"cite"><blockquote type=3D"cite">Till: Dan Kenigsberg= <br></blockquote></blockquote></blockquote></blockquote><blockquote type=3D= "cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite">Kopia: Karli Sj=F6berg; <a href=3D"mailto:users@oVirt.org">users@= oVirt.org</a> <<a href=3D"mailto:users@oVirt.org">mailto:users@oVirt.org= </a>><br></blockquote></blockquote></blockquote></blockquote><blockquote= type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockqu= ote type=3D"cite"><<a href=3D"mailto:users@oVirt.org">mailto:users@oVirt= .org</a>><br></blockquote></blockquote></blockquote></blockquote><blockq= uote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blo= ckquote type=3D"cite">=C4mne: Re: [Users] BSTRAP component=3D'CreateConf' s= tatus=3D'FAIL'<br></blockquote></blockquote></blockquote></blockquote><bloc= kquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><b= lockquote type=3D"cite">message=3D'Basic configuration failed to import def= ault values'<br></blockquote></blockquote></blockquote></blockquote><blockq= uote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blo= ckquote type=3D"cite"><br></blockquote></blockquote></blockquote></blockquo= te><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"= cite"><blockquote type=3D"cite">On 06/28/2012 10:41 AM, Dan Kenigsberg wrot= e:<br></blockquote></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite">On Thu, Jun 28, 2012 at 04:12:15PM +0200, Karli Sj=F6berg wrot= e:<br></blockquote></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite"><br></blockquote></blockquote></blockquote></blockquote><block= quote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><bl= ockquote type=3D"cite">28 jun 2012 kl. 15.55 skrev Dan Kenigsberg:<br></blo= ckquote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><b= lockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"= pe=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">from config= import config<br></blockquote></blockquote></blockquote></blockquote><bloc= kquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><b= lockquote type=3D"cite"><br></blockquote></blockquote></blockquote></blockq= uote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite">if not os.path.exists(VDSM_CONF):<br></= blockquote></blockquote></blockquote></blockquote><blockquote type=3D"cite"= blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote = type=3D"cite"><blockquote type=3D"cite">logging.debug(lines)<br></blockquot= e></blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockqu= ote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">fd, t= mpName =3D tempfile.mkstemp()<br></blockquote></blockquote></blockquote></b= lockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite"><blockquote type=3D"cite">f =3D os.fdopen(fd, 'w')<br></blockq= uote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><bloc= kquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">f.= writelines(lines)<br></blockquote></blockquote></blockquote></blockquote><b= lockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"= blockquote></blockquote></blockquote></blockquote><blockquote type=3D"cite"= blockquote></blockquote></blockquote></blockquote><blockquote type=3D"cite"= blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite= "><blockquote type=3D"cite">self._makeConfig()<br></blockquote></blockquote= blockquote></blockquote></blockquote></blockquote><blockquote type=3D"cite"= blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"= blockquote type=3D"cite">Thu, 28 Jun 2012 12:25:53 DEBUG<br></blockquote></= blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote = type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">Thu, 28 J= un 2012 12:25:53 ERROR<br></blockquote></blockquote></blockquote></blockquo= te><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"= cite"><blockquote type=3D"cite">Traceback (most recent call last):<br></blo= ckquote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><b= lockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"= blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite= ">line 594, in createConf<br></blockquote></blockquote></blockquote></block= quote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite">self._makeConfig()<br></blockquote></bl= ockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote ty= pe=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">File "/tmp/= vds_bootstrap_ca67f0a5-115c-4943-a9ef-157654586da5.py",<br></blockquote></b= lockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote t= ype=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">line 557, = in _makeConfig<br></blockquote></blockquote></blockquote></blockquote><bloc= kquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><b= lockquote type=3D"cite">from config import config<br></blockquote></blockqu= ote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D= "cite"><blockquote type=3D"cite"><blockquote type=3D"cite">ImportError: No = module named config<br></blockquote></blockquote></blockquote></blockquote>= <blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cit= e"><blockquote type=3D"cite">Thu, 28 Jun 2012 12:25:53 DEBUG<br></blockquot= e></blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockqu= ote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">Thu, = 28 Jun 2012 12:25:53 ERROR createConf failed<br></blockquote></blockquote><= /blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite= "><blockquote type=3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 12:2= 5:53 DEBUG<br></blockquote></blockquote></blockquote></blockquote><blockquo= te type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><block= quote type=3D"cite">Thu, 28 Jun 2012 12:25:53 DEBUG **** End VDS Validation= ****<br></blockquote></blockquote></blockquote></blockquote><blockquote ty= pe=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote= type=3D"cite"><br></blockquote></blockquote></blockquote></blockquote><blo= ckquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><= blockquote type=3D"cite"><br></blockquote></blockquote></blockquote></block= quote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite">Which version of vdsm-bootstrap do you = have installed? if it is not a<br></blockquote></blockquote></blockquote></= blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote = type=3D"cite"><blockquote type=3D"cite">4.10.something, I suggest you upgra= de.<br></blockquote></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite"><br></blockquote></blockquote></blockquote></blockquote><block= quote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><bl= ockquote type=3D"cite"># rpm -qa | grep vdsm-bootstrap<br></blockquote></bl= ockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote ty= pe=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">vdsm-bootst= rap-4.9.3.2-0.fc17.noarch<br></blockquote></blockquote></blockquote></block= quote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquote></blockqu= ote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><block= quote type=3D"cite"><blockquote type=3D"cite">That's too old to install ovi= rt-3.1.<br></blockquote></blockquote></blockquote></blockquote><blockquote = type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquo= te type=3D"cite">Please retry with the one on the beta repo<br></blockquote= blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"= blockquote></blockquote></blockquote></blockquote><blockquote type=3D"cite"= pe=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">in _makeCon= fig<br></blockquote></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite">from config import config<br></blockquote></blockquote></block= quote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blo= ckquote type=3D"cite"><blockquote type=3D"cite">ImportError: No module name= d config<br></blockquote></blockquote></blockquote></blockquote><blockquote= type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockqu= ote type=3D"cite"><br></blockquote></blockquote></blockquote></blockquote><= blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite= "><blockquote type=3D"cite"><br></blockquote></blockquote></blockquote></bl= ockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote ty= pe=3D"cite"><blockquote type=3D"cite">rpm -U<br></blockquote></blockquote><= /blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite= "><blockquote type=3D"cite"><blockquote type=3D"cite"><a href=3D"http://koj= ipkgs.fedoraproject.org//packages/vdsm/4.10.0/3.fc17/noarch/vdsm-bootstrap-= 4.10.0-3.fc17.noarch.rpm">http://kojipkgs.fedoraproject.org//packages/vdsm/= 4.10.0/3.fc17/noarch/vdsm-bootstrap-4.10.0-3.fc17.noarch.rpm</a><br></block= quote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><blo= ckquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><= br></blockquote></blockquote></blockquote></blockquote><blockquote type=3D"= cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite">Then, after next "Re-Install"<br></blockquote></blockquote></bloc= kquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><bl= ockquote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockqu= ote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D= "cite"><blockquote type=3D"cite"><blockquote type=3D"cite">more /tmp/vds_bo= otstrap.470161.log<br></blockquote></blockquote></blockquote></blockquote><= blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite= "><blockquote type=3D"cite">Thu, 28 Jun 2012 19:39:45 DEBUG **** Start VDS = Validation ****<br></blockquote></blockquote></blockquote></blockquote><blo= ckquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><= blockquote type=3D"cite">Thu, 28 Jun 2012 19:39:45 DEBUG Entered VdsValidat= ion(subject =3D<br></blockquote></blockquote></blockquote></blockquote><blo= ckquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><= blockquote type=3D"cite">'172.22.8.14', random_num =3D 'e27aad2f-4bb2-42f1-= 930e-6c7bab54fb1c',<br></blockquote></blockquote></blockquote></blockquote>= <blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cit= e"><blockquote type=3D"cite">rev_num =3D 'None', installVirtualizationServi= ce =3D<br></blockquote></blockquote></blockquote></blockquote><blockquote t= ype=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquot= e type=3D"cite">'True',installGlusterService =3D 'False')<br></blockquote><= /blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote= type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">Thu, 28 = Jun 2012 19:39:45 ERROR checkRegistration: Error searching for<br></blockqu= ote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><block= quote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">VDS= M package!<br></blockquote></blockquote></blockquote></blockquote><blockquo= te type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><block= quote type=3D"cite">Traceback (most recent call last):<br></blockquote></bl= ockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote ty= pe=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">File "/tmp/= vds_bootstrap_e27aad2f-4bb2-42f1-930e-6c7bab54fb1c.py",<br></blockquote></b= lockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote t= ype=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">line 228, = in checkRegistration<br></blockquote></blockquote></blockquote></blockquote= pe=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote= type=3D"cite">AttributeError: 'module' object has no attribute 'yumListPac= kages'<br></blockquote></blockquote></blockquote></blockquote><blockquote t= ype=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquot= e type=3D"cite">Thu, 28 Jun 2012 19:39:45 ERROR Unable to fetch vdsm packag= e.<br></blockquote></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite">Please check if host is registered to RHN, Satellite or other = yum<br></blockquote></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite">repository<br></blockquote></blockquote></blockquote></blockqu= ote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D= "cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 19:39:45 DEBUG<br></block= quote></blockquote></blockquote></blockquote><blockquote type=3D"cite"><blo= ckquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">T= hu, 28 Jun 2012 19:39:45 ERROR checkRegistration test failed<br></blockquot= e></blockquote></blockquote></blockquote><blockquote type=3D"cite"><blockqu= ote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">Thu, = 28 Jun 2012 19:39:45 DEBUG<br></blockquote></blockquote></blockquote></bloc= kquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite">Thu, 28 Jun 2012 19:39:45 DEBUG **** En= d VDS Validation ****<br></blockquote></blockquote></blockquote></blockquot= e><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"c= ite"><blockquote type=3D"cite">____________________________________________= ___<br></blockquote></blockquote></blockquote></blockquote><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote t= ype=3D"cite">Users mailing list<br></blockquote></blockquote></blockquote><= /blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote= type=3D"cite"><blockquote type=3D"cite"><a href=3D"mailto:Users@ovirt.org"= blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote = type=3D"cite">-------------------------------------------------------------= ------------------<br></blockquote></blockquote></blockquote><blockquote ty= pe=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">Karli Sj=F6= berg<br></blockquote></blockquote></blockquote><blockquote type=3D"cite"><b= lockquote type=3D"cite"><blockquote type=3D"cite">Swedish University of Agr= icultural Sciences<br></blockquote></blockquote></blockquote><blockquote ty= pe=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">Box 7079 (V= isiting Address Kron=E5sv=E4gen 8)<br></blockquote></blockquote></blockquot= e><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"c= ite">S-750 07 Uppsala, Sweden<br></blockquote></blockquote></blockquote><bl= ockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">= Phone: +46-(0)18-67 15 66<br></blockquote></blockquote></blockquote><blockq= uote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><a h= ref=3D"mailto:karli.sjoberg@slu.se">karli.sjoberg@slu.se</a> <<a href=3D= "mailto:karli.sjoberg@slu.se">mailto:karli.sjoberg@slu.se</a>><br></bloc= kquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite"><<a href=3D"mailto:karli.sjoberg@adm= .slu.se">mailto:karli.sjoberg@adm.slu.se</a>><br></blockquote></blockquo= te></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockq= uote type=3D"cite"><br></blockquote></blockquote></blockquote><blockquote t= ype=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><br></bloc= kquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite"><br></blockquote></blockquote></blockqu= ote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D= "cite">_______________________________________________<br></blockquote></bl= ockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><= blockquote type=3D"cite">Users mailing list<br></blockquote></blockquote></= blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><blockquote = type=3D"cite"><a href=3D"mailto:Users@ovirt.org">Users@ovirt.org</a> <<a= href=3D"mailto:Users@ovirt.org">mailto:Users@ovirt.org</a>><br></blockq= uote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite"><a href=3D"http://lists.ovirt.org/mailm= an/listinfo/users">http://lists.ovirt.org/mailman/listinfo/users</a><br></b= lockquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote t= ype=3D"cite"><br></blockquote></blockquote><blockquote type=3D"cite"><br></= blockquote><blockquote type=3D"cite"><br></blockquote><blockquote type=3D"c= ite"><br></blockquote><blockquote type=3D"cite">Med V=E4nliga H=E4lsningar<= br></blockquote><blockquote type=3D"cite">---------------------------------= ----------------------------------------------<br></blockquote><blockquote = type=3D"cite">Karli Sj=F6berg<br></blockquote><blockquote type=3D"cite">Swe= dish University of Agricultural Sciences<br></blockquote><blockquote type= =3D"cite">Box 7079 (Visiting Address Kron=E5sv=E4gen 8)<br></blockquote><bl= ockquote type=3D"cite">S-750 07 Uppsala, Sweden<br></blockquote><blockquote= type=3D"cite">Phone: +46-(0)18-67 15 66<br></blockquote><blockquote type= =3D"cite"><a href=3D"mailto:karli.sjoberg@slu.se">karli.sjoberg@slu.se</a> = <<a href=3D"mailto:karli.sjoberg@adm.slu.se">mailto:karli.sjoberg@adm.sl= u.se</a>><br></blockquote><blockquote type=3D"cite"><br></blockquote><br= dth: 0px; font-size: medium; "><div><br class=3D"Apple-interchange-newline"=
<br></div><div>Med V=E4nliga H=E4lsningar<br>-----------------------------= --------------------------------------------------<br>Karli Sj=F6berg<br>Sw= edish University of Agricultural Sciences<br>Box 7079 (Visiting Address Kro= n=E5sv=E4gen 8)<br>S-750 07 Uppsala, Sweden<br>Phone: +46-(0)18-67 15= 66</div><div><a href=3D"mailto:karli.sjoberg@adm.slu.se">karli.sjoberg@slu= .se</a></div></span> </div> <br></body></html>=
--_000_8A0A9721953E4DA3B3D1AF5B7B6C0143sluse_--

On 06/29/2012 02:42 PM, Karli Sjöberg wrote:
29 jun 2012 kl. 13.16 skrev Itamar Heim:
On 06/29/2012 07:11 AM, Karli Sjöberg wrote:
29 jun 2012 kl. 12.54 skrev Itamar Heim:
On 06/29/2012 03:27 AM, Karli Sjöberg wrote:
28 jun 2012 kl. 22.11 skrev Doron Fediuck:
Please rm /tmp/*py* in your host. Older scripts may be interrupting.
# rm -f /tmp/*py* # rm -f /tmp/*log* # rm -f /tmp/*tmp*
"Re-Install"
/var/log/ovirt-engine/engine.log:
...
OK, one step forward and one step back. It seems as if the host installation went through, but after reboot, I have no contact with the web user interface. It thinks it´s active: # systemctl is-active ovirt-engine.service active
But I don´t even get to the initial portal chooser-page.
did you try to add the host the engine is running on or another physical machine?
The same. As I stated in the beginning, I want to be able to have the engine configured to execute power management for the rest of the hosts in the cluster, as per:
Source: http://lists.ovirt.org/pipermail/users/2012-February/000361.html "Yes, the ovirt backend does not shut down or power up any hosts directly, it can work only through vdsm. Therefore you need one running host per datacenter to be able to manage the rest of the hosts."
Adding the engine as a host in the cluster seems to be the way to achieve that.
1. power management is DC wide, not cluster. 2. you don't want the engine to be a host, unless you use the all-in-one plugin, which makes sure the node isn't rebooted while it is being added. 3. it will still won't help your problem, since it is local storage. 4. *if* you use the engine as a node (which may cause various issues), you need to make sure no VMs will run on it and it won't be an SPM (setting spm priority of 0 or -1 from the api) 5. you should probably also add the host from the api, using the no-reboot flag.
Let me explain a little to make you better understand my reasoning behind this configuration.
We work with segmented, separated networks. One network for public access, one for storage traffic, one for management and so on. That means that if the nodes themselves have to do their own power-management, the nodes would require three interfaces each, and the metal we are using for hosts just don´t have that. But if we can use the backend to do that, the hosts would only require two interfaces, which most 1U servers are equipped with as standard (plus one iLO/IPMI/whatev), so we can use them as hosts without issue. Then the backend has one extra interface that it can use to communicate over the power management network to the respective service processor with.
Is there a "better" way to achieve what we are aiming for?
so there is no routing between the ovirtmgmt network and the iLO/IPMI network? what i am missing is why it will be ok for the engine to connect to all hosts iLO but all other hosts can't?
2. Then I would like to use that. Where can I find a all-in-one plugin that fits into the install? 3. I may have misunderstood, but I will be using NFS shared storage. 4. Precisely what I was thinking. Thanks for the SPM-hint! 5. OK, sure. Is it still necessary to have the all-in-one plugin installed in that case?
no - i just mentioned it is a use case in which we do install for simple POC's where the engine and vdsm are on the same host, but it is limited to using local storage of that host. it gives easy out of the box ramp up, adds the host, creates the DC, storage domain, etc. - all as part of the installation). (and it is an rpm just like the rest of ovirt rpms in same repo)
I would like to say that I´m loving oVirt this far, it is truly an amazing piece of software. Thank you all, and thank you for your help and your knowledge!
thanks - glad to hear.

________________________________________ Från: Itamar Heim [iheim@redhat.com] Skickat: den 29 juni 2012 19:54 Till: Karli Sjöberg Kopia: Doron Fediuck; users@oVirt.org Ämne: Re: [Users] BSTRAP component='CreateConf' status='FAIL' message='Basic configuration failed to import default values' On 06/29/2012 02:42 PM, Karli Sjöberg wrote:
29 jun 2012 kl. 13.16 skrev Itamar Heim:
On 06/29/2012 07:11 AM, Karli Sjöberg wrote:
29 jun 2012 kl. 12.54 skrev Itamar Heim:
On 06/29/2012 03:27 AM, Karli Sjöberg wrote:
28 jun 2012 kl. 22.11 skrev Doron Fediuck:
Please rm /tmp/*py* in your host. Older scripts may be interrupting.
# rm -f /tmp/*py* # rm -f /tmp/*log* # rm -f /tmp/*tmp*
"Re-Install"
/var/log/ovirt-engine/engine.log:
...
OK, one step forward and one step back. It seems as if the host installation went through, but after reboot, I have no contact with the web user interface. It thinks it´s active: # systemctl is-active ovirt-engine.service active
But I don´t even get to the initial portal chooser-page.
did you try to add the host the engine is running on or another physical machine?
The same. As I stated in the beginning, I want to be able to have the engine configured to execute power management for the rest of the hosts in the cluster, as per:
Source: http://lists.ovirt.org/pipermail/users/2012-February/000361.html "Yes, the ovirt backend does not shut down or power up any hosts directly, it can work only through vdsm. Therefore you need one running host per datacenter to be able to manage the rest of the hosts."
Adding the engine as a host in the cluster seems to be the way to achieve that.
1. power management is DC wide, not cluster. 2. you don't want the engine to be a host, unless you use the all-in-one plugin, which makes sure the node isn't rebooted while it is being added. 3. it will still won't help your problem, since it is local storage. 4. *if* you use the engine as a node (which may cause various issues), you need to make sure no VMs will run on it and it won't be an SPM (setting spm priority of 0 or -1 from the api) 5. you should probably also add the host from the api, using the no-reboot flag.
Let me explain a little to make you better understand my reasoning behind this configuration.
We work with segmented, separated networks. One network for public access, one for storage traffic, one for management and so on. That means that if the nodes themselves have to do their own power-management, the nodes would require three interfaces each, and the metal we are using for hosts just don´t have that. But if we can use the backend to do that, the hosts would only require two interfaces, which most 1U servers are equipped with as standard (plus one iLO/IPMI/whatev), so we can use them as hosts without issue. Then the backend has one extra interface that it can use to communicate over the power management network to the respective service processor with.
Is there a "better" way to achieve what we are aiming for?
so there is no routing between the ovirtmgmt network and the iLO/IPMI network? what i am missing is why it will be ok for the engine to connect to all hosts iLO but all other hosts can't? I can't think of any reason why, but it sounds like you do. What's on your mind?
2. Then I would like to use that. Where can I find a all-in-one plugin that fits into the install? 3. I may have misunderstood, but I will be using NFS shared storage. 4. Precisely what I was thinking. Thanks for the SPM-hint! 5. OK, sure. Is it still necessary to have the all-in-one plugin installed in that case?
no - i just mentioned it is a use case in which we do install for simple POC's where the engine and vdsm are on the same host, but it is limited to using local storage of that host. it gives easy out of the box ramp up, adds the host, creates the DC, storage domain, etc. - all as part of the installation). (and it is an rpm just like the rest of ovirt rpms in same repo) I have made some headway, managed to add the host into it's own cluster using ovirt-engine-cli executing: # create host --address "xxx.xxx.xxx.xxx" --cluster-id "99408929-82cf-4dc7-a532-9d998063fa95" --name "Default" --root_password "Password" --reboot_after_installation "0" But I haven't had much luck setting SPM -1. Would you mind showing me the exact syntax, please?
I would like to say that I´m loving oVirt this far, it is truly an amazing piece of software. Thank you all, and thank you for your help and your knowledge!
thanks - glad to hear.

On 07/04/2012 12:11 AM, Karli Sjöberg wrote:
________________________________________ Från: Itamar Heim [iheim@redhat.com] Skickat: den 29 juni 2012 19:54 Till: Karli Sjöberg Kopia: Doron Fediuck; users@oVirt.org Ämne: Re: [Users] BSTRAP component='CreateConf' status='FAIL' message='Basic configuration failed to import default values'
On 06/29/2012 02:42 PM, Karli Sjöberg wrote:
29 jun 2012 kl. 13.16 skrev Itamar Heim:
On 06/29/2012 07:11 AM, Karli Sjöberg wrote:
29 jun 2012 kl. 12.54 skrev Itamar Heim:
On 06/29/2012 03:27 AM, Karli Sjöberg wrote:
28 jun 2012 kl. 22.11 skrev Doron Fediuck:
> Please rm /tmp/*py* in your host. > Older scripts may be interrupting.
# rm -f /tmp/*py* # rm -f /tmp/*log* # rm -f /tmp/*tmp*
"Re-Install"
/var/log/ovirt-engine/engine.log:
...
OK, one step forward and one step back. It seems as if the host installation went through, but after reboot, I have no contact with the web user interface. It thinks it´s active: # systemctl is-active ovirt-engine.service active
But I don´t even get to the initial portal chooser-page.
did you try to add the host the engine is running on or another physical machine?
The same. As I stated in the beginning, I want to be able to have the engine configured to execute power management for the rest of the hosts in the cluster, as per:
Source: http://lists.ovirt.org/pipermail/users/2012-February/000361.html "Yes, the ovirt backend does not shut down or power up any hosts directly, it can work only through vdsm. Therefore you need one running host per datacenter to be able to manage the rest of the hosts."
Adding the engine as a host in the cluster seems to be the way to achieve that.
1. power management is DC wide, not cluster. 2. you don't want the engine to be a host, unless you use the all-in-one plugin, which makes sure the node isn't rebooted while it is being added. 3. it will still won't help your problem, since it is local storage. 4. *if* you use the engine as a node (which may cause various issues), you need to make sure no VMs will run on it and it won't be an SPM (setting spm priority of 0 or -1 from the api) 5. you should probably also add the host from the api, using the no-reboot flag.
Let me explain a little to make you better understand my reasoning behind this configuration.
We work with segmented, separated networks. One network for public access, one for storage traffic, one for management and so on. That means that if the nodes themselves have to do their own power-management, the nodes would require three interfaces each, and the metal we are using for hosts just don´t have that. But if we can use the backend to do that, the hosts would only require two interfaces, which most 1U servers are equipped with as standard (plus one iLO/IPMI/whatev), so we can use them as hosts without issue. Then the backend has one extra interface that it can use to communicate over the power management network to the respective service processor with.
Is there a "better" way to achieve what we are aiming for?
so there is no routing between the ovirtmgmt network and the iLO/IPMI network? what i am missing is why it will be ok for the engine to connect to all hosts iLO but all other hosts can't?
I can't think of any reason why, but it sounds like you do. What's on your mind?
it sounds like you should be fine without any change. if engine can connect to all hosts iLO, I doubt all hosts can't as well.
2. Then I would like to use that. Where can I find a all-in-one plugin that fits into the install? 3. I may have misunderstood, but I will be using NFS shared storage. 4. Precisely what I was thinking. Thanks for the SPM-hint! 5. OK, sure. Is it still necessary to have the all-in-one plugin installed in that case?
no - i just mentioned it is a use case in which we do install for simple POC's where the engine and vdsm are on the same host, but it is limited to using local storage of that host. it gives easy out of the box ramp up, adds the host, creates the DC, storage domain, etc. - all as part of the installation). (and it is an rpm just like the rest of ovirt rpms in same repo)
I have made some headway, managed to add the host into it's own cluster using ovirt-engine-cli executing: # create host --address "xxx.xxx.xxx.xxx" --cluster-id "99408929-82cf-4dc7-a532-9d998063fa95" --name "Default" --root_password "Password" --reboot_after_installation "0"
But I haven't had much luck setting SPM -1. Would you mind showing me the exact syntax, please?
michael?
I would like to say that I´m loving oVirt this far, it is truly an amazing piece of software. Thank you all, and thank you for your help and your knowledge!
thanks - glad to hear.

On 07/04/2012 07:50 AM, Itamar Heim wrote:
I have made some headway, managed to add the host into it's own cluster using ovirt-engine-cli executing: # create host --address "xxx.xxx.xxx.xxx" --cluster-id "99408929-82cf-4dc7-a532-9d998063fa95" --name "Default" --root_password "Password" --reboot_after_installation "0"
But I haven't had much luck setting SPM -1. Would you mind showing me the exact syntax, please?
michael?
just add this option '--storage_manager-priority -1' to 'create' command, or use it for updating existent host. to see all available options for host creation do: "help create host" -- Michael Pasternak RedHat, ENG-Virtualization R&D

On 07/04/2012 07:50 AM, Itamar Heim wrote:
I have made some headway, managed to add the host into it's own cluster using ovirt-engine-cli executing: # create host --address "xxx.xxx.xxx.xxx" --cluster-id "99408929-82cf-4dc7-a532-9d998063fa95" --name "Default" --root_password "Password" --reboot_after_installation "0"
But I haven't had much luck setting SPM -1. Would you mind showing me the exact syntax, please?
michael?
just add this option '--storage_manager-priority -1' to 'create' command, or use it for updating existent host.
Sure thing. Could you also give an example command on how you modify that property on an already added host? /Karli
to see all available options for host creation do: "help create host"
--
Michael Pasternak RedHat, ENG-Virtualization R&D

On 07/04/2012 04:23 PM, Karli Sjöberg wrote:
On 07/04/2012 07:50 AM, Itamar Heim wrote:
I have made some headway, managed to add the host into it's own cluster using ovirt-engine-cli executing: # create host --address "xxx.xxx.xxx.xxx" --cluster-id "99408929-82cf-4dc7-a532-9d998063fa95" --name "Default" --root_password "Password" --reboot_after_installation "0"
But I haven't had much luck setting SPM -1. Would you mind showing me the exact syntax, please?
michael?
just add this option '--storage_manager-priority -1' to 'create' command, or use it for updating existent host.
Sure thing. Could you also give an example command on how you modify that property on an already added host?
update host myhost --storage_manager-priority -1
/Karli
to see all available options for host creation do: "help create host"
--
Michael Pasternak RedHat, ENG-Virtualization R&D
-- Michael Pasternak RedHat, ENG-Virtualization R&D

On 07/04/2012 04:23 PM, Karli Sjöberg wrote:
On 07/04/2012 07:50 AM, Itamar Heim wrote:
I have made some headway, managed to add the host into it's own cluster using ovirt-engine-cli executing: # create host --address "xxx.xxx.xxx.xxx" --cluster-id "99408929-82cf-4dc7-a532-9d998063fa95" --name "Default" --root_password "Password" --reboot_after_installation "0"
But I haven't had much luck setting SPM -1. Would you mind showing me the exact syntax, please?
michael?
just add this option '--storage_manager-priority -1' to 'create' command, or use it for updating existent host.
Sure thing. Could you also give an example command on how you modify that property on an already added host?
update host myhost --storage_manager-priority -1
Awesome, thanks man! /Karli
/Karli
to see all available options for host creation do: "help create host"
--
Michael Pasternak RedHat, ENG-Virtualization R&D
--
Michael Pasternak RedHat, ENG-Virtualization R&D

</blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"ci= te"><blockquote type=3D"cite"><blockquote type=3D"cite">I have made some he= adway, managed to add the host into it's own cluster using ovirt-engine-cli= executing:<br></blockquote></blockquote></blockquote></blockquote><blockqu= ote type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><bloc= kquote type=3D"cite"># create host --address "xxx.xxx.xxx.xxx" --cluster-id= "99408929-82cf-4dc7-a532-9d998063fa95" --name "Default" --root_password "P= assword" --reboot_after_installation "0"<br></blockquote></blockquote></blo= ckquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><b= lockquote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></blockq= uote></blockquote></blockquote><blockquote type=3D"cite"><blockquote type= =3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite">But I haven't= had much luck setting SPM -1. Would you mind showing me the exact syntax, =
--_000_DC18D7BDA6924964B6373A826E3B9FCAsluse_ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable 4 jul 2012 kl. 15.33 skrev Michael Pasternak: On 07/04/2012 04:23 PM, Karli Sj=F6berg wrote: On 07/04/2012 07:50 AM, Itamar Heim wrote: I have made some headway, managed to add the host into it's own cluster usi= ng ovirt-engine-cli executing: # create host --address "xxx.xxx.xxx.xxx" --cluster-id "99408929-82cf-4dc7-= a532-9d998063fa95" --name "Default" --root_password "Password" --reboot_aft= er_installation "0" But I haven't had much luck setting SPM -1. Would you mind showing me the e= xact syntax, please? michael? just add this option '--storage_manager-priority -1' to 'create' command, or use it for updating existent host. Sure thing. Could you also give an example command on how you modify that p= roperty on an already added host? update host myhost --storage_manager-priority -1 I have been on vacation for a while. Now I=B4m back and that command return= s: unknown error: %d format: a number is required, not str So I did: # update host myhost --storage_manager-priority 0 storage_manager-priority : 0 Just FYI /Karli to see all available options for host creation do: "help create host" -- Michael Pasternak RedHat, ENG-Virtualization R&D -- Michael Pasternak RedHat, ENG-Virtualization R&D Med V=E4nliga H=E4lsningar ---------------------------------------------------------------------------= ---- Karli Sj=F6berg Swedish University of Agricultural Sciences Box 7079 (Visiting Address Kron=E5sv=E4gen 8) S-750 07 Uppsala, Sweden Phone: +46-(0)18-67 15 66 karli.sjoberg@slu.se<mailto:karli.sjoberg@adm.slu.se> --_000_DC18D7BDA6924964B6373A826E3B9FCAsluse_ Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <html><head></head><body style=3D"word-wrap: break-word; -webkit-nbsp-mode:= space; -webkit-line-break: after-white-space; "><br><div><div>4 jul 2012 k= l. 15.33 skrev Michael Pasternak:</div><br class=3D"Apple-interchange-newli= ne"><blockquote type=3D"cite"><div>On 07/04/2012 04:23 PM, Karli Sj=F6berg = wrote:<br><blockquote type=3D"cite"><br></blockquote><blockquote type=3D"ci= te"><blockquote type=3D"cite">On 07/04/2012 07:50 AM, Itamar Heim wrote:<br= please?<br></blockquote></blockquote></blockquote></blockquote><blockquote = type=3D"cite"><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blo= ckquote></blockquote></blockquote><blockquote type=3D"cite"><blockquote typ= e=3D"cite"><blockquote type=3D"cite">michael?<br></blockquote></blockquote>= </blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></bloc= kquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">jus= t add this option '--storage_manager-priority -1' to 'create' command,<br><= /blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite= ">or use it for updating existent host.<br></blockquote></blockquote><block= quote type=3D"cite"><br></blockquote><blockquote type=3D"cite">Sure thing. = Could you also give an example command on how you modify that property on a= n already added host?<br></blockquote><br>update host myhost --storage_mana= ger-priority -1<br></div></blockquote><div><br></div>I have been on vacatio= n for a while. Now I=B4m back and that command returns:</div><div>unknown e= rror: %d format: a number is required, not str</div><div><br></div><div>So = I did:</div><div># update host myhost --storage_manager-priority 0</div><di= v>storage_manager-priority : 0</d= iv><div><br></div><div>Just FYI</div><div><br></div><div><blockquote type= =3D"cite"><div><br><blockquote type=3D"cite"><br></blockquote><blockquote t= ype=3D"cite">/Karli<br></blockquote><blockquote type=3D"cite"><br></blockqu= ote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></blockquote></= blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">to see all a= vailable options for host creation do: "help create host"<br></blockquote><= /blockquote><blockquote type=3D"cite"><blockquote type=3D"cite"><br></block= quote></blockquote><blockquote type=3D"cite"><blockquote type=3D"cite">-- <= br></blockquote></blockquote><blockquote type=3D"cite"><blockquote type=3D"= cite"><br></blockquote></blockquote><blockquote type=3D"cite"><blockquote t= ype=3D"cite">Michael Pasternak<br></blockquote></blockquote><blockquote typ= e=3D"cite"><blockquote type=3D"cite">RedHat, ENG-Virtualization R&D<br>= </blockquote></blockquote><br><br>-- <br><br>Michael Pasternak<br>RedHat, E= NG-Virtualization R&D<br></div></blockquote></div><br><div> <div><br class=3D"Apple-interchange-newline"><br></div><div>Med V=E4nliga H= =E4lsningar<br>------------------------------------------------------------= -------------------<br>Karli Sj=F6berg<br>Swedish University of Agricultura= l Sciences<br>Box 7079 (Visiting Address Kron=E5sv=E4gen 8)<br>S-750 07 Upp= sala, Sweden<br>Phone: +46-(0)18-67 15 66</div><div><a href=3D"mailto= :karli.sjoberg@adm.slu.se">karli.sjoberg@slu.se</a></div> </div> <br></body></html>= --_000_DC18D7BDA6924964B6373A826E3B9FCAsluse_--
participants (4)
-
Doron Fediuck
-
Itamar Heim
-
Karli Sjöberg
-
Michael Pasternak