{"id":938,"date":"2020-12-05T06:50:52","date_gmt":"2020-12-05T14:50:52","guid":{"rendered":"https:\/\/angrysysadmins.tech\/?p=938"},"modified":"2020-12-05T06:50:52","modified_gmt":"2020-12-05T14:50:52","slug":"how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues","status":"publish","type":"post","link":"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/","title":{"rendered":"How to Manually Deploy oVirt Hosted Engine and Fix Some Common Issues"},"content":{"rendered":"<p>oVirt is a great product, and it&#8217;s hosted engine is a great concept. It is a mostly automated deploy of a VM containing the oVirt Hosted Engine and the initial setup of your first host. This is similar to how VMware and XCP-ng\/XenServer does it, however the default install method of the hosted engine tries to do too much. With VMware and XCP-ng\/XenServer, you are expected to have a functional hypervisor first with all of its networking, storage, and permissions all setup and working, then you deploy the virtual appliance to manage it more completely. oVirt on the other-hand tries to do everything in one huge Ansible script that if one thing breaks, it removes everything (or tries too) and requires you to redeploy, instead of trying to fix the issue.<\/p>\n<p>&nbsp;<\/p>\n<p>If oVirt wants to fix this over complication, they could do a few things. Firstly, have the script fail gracefully, and allow the user to attempt to fix it before purging everything.\u00a0 Secondly, just have the hosted engine deploy to an existing KVM\/QEMU setup initially, instead of dumping everything to \/tmp\/ then purging it if something goes wrong. Lastly, create a basic plugin for cockpit for extremely basic oVirt management for vm&#8217;s, like turn on, see XML, delete, etc. You could even fork or just use the standard cockpit virtualization plugin, that would be great! This would go a long way in diagnosing issues when ovirt-engine is down, and it is how all of the other big boys do it in the industry.<\/p>\n<h2>Setup and Dependencies<\/h2>\n<p>First, we need to install all of oVirts dependencies. Follow oVirt&#8217;s guide on the cockpit wizard here up until the engine deploy. https:\/\/www.ovirt.org\/download\/<\/p>\n<p>Next, we need to install tmux<\/p>\n<pre>dnf install tmux -y<\/pre>\n<p>Next, we need to enable scrolling on tmux.<\/p>\n<pre>echo \"set -g mouse on\" &gt; .tmux.conf<\/pre>\n<p>Now enter tmux with the command tmux then run<\/p>\n<pre>tmux source-file .tmux.conf<\/pre>\n<h2>Getting the SEED.iso<\/h2>\n<p>The oVirt hosted engine setup has a seed.iso on it that has your answer file in it, as well as a cloud-init script to set the password, hostname, and a few other options on the Hosted Engine. We need to get far enough in the setup script to launch the hosted-engine VM where that seed.iso is created so we can copy it. This ISO is not strictly needed, but it is easier than entering single user mode and changing the default creds on the machine. Running the setup also has a bonus of setting up libvirt and KVM for us, so we don&#8217;t have to do that manually.<\/p>\n<p>&nbsp;<\/p>\n<p>To grab it, open 2 ssh sessions, And also open a cockpit session, install the virtual machine plugin, and then navigate to it. On the first ssh session, we want to run the ovirt-hosted-engine-setup. Run though the setup, answering all of the questions, and wait to see when it deploys the hosted-engine vm. When it does, we want to navigate to Disks on cockpit, and find the Seed.iso. in the second ssh terminal, copy that to another directory, like \/opt\/ or \/root\/<\/p>\n<h2>Getting the Hosted-Engine VM<\/h2>\n<p>There are 2 ways to go about getting the Hosted-Egnine VM. The way I&#8217;ll be showing you is by getting the latest OVA from the oVirt repository. Another way this could be done is by copying or cloning the VM that the setup-script deploys before it has a chance to delete it. That way is much easier, but not everyone will have that option, so I&#8217;ll go though the RPM way.<\/p>\n<p>&nbsp;<\/p>\n<p>Firstly, we need to get the VM OVA. You can download it from the oVirt repository. At the time of writing this, it is here: https:\/\/resources.ovirt.org\/pub\/ovirt-4.4\/rpm\/el8\/x86_64\/ovirt-engine-appliance-4.4-20201110154142.1.el8.x86_64.rpm<\/p>\n<p>Next, we need to extract it. In my case to commands were<\/p>\n<pre>wget https:\/\/resources.ovirt.org\/pub\/ovirt-4.4\/rpm\/el8\/x86_64\/ovirt-engine-appliance-4.4-20201110154142.1.el8.x86_64.rpm\r\nrpm2cpio ovirt-engine-appliance-4.4-20201110154142.1.el8.x86_64.rpm | cpio -idmv\r\ncd usr\/share\/ovirt-engine-appliance # note this is not \/usr\/\r\ntar -xvf ovirt-engine-appliance-4.4-20201110154142.1.el8.ova<\/pre>\n<p>&nbsp;<\/p>\n<p>Finally, we need to get the qcow from it. It should just be some filename UUID with no extension. That is the qcow2. It is in images\/SOME-UUID\/. In my case it is images\/6d1ea50f-eecf-4077-bcd2-2e14035c39b5\/ with the qcow2 being named e412657a-5448-49e4-9b6a-d1b35f5d9892. I renamed it to Ovirt-Hosted-Engine.qcow2<\/p>\n<pre>cd images\/6d1ea50f-eecf-4077-bcd2-2e14035c39b5\r\nmv e412657a-5448-49e4-9b6a-d1b35f5d9892 Ovirt-Hosted-Engine.qcow2<\/pre>\n<p>You will need to move the qcow2 into the place where you create your storage pool, wherever that is.<\/p>\n<h2>Creating the VM<\/h2>\n<p>Now we need to setup QEMU\\KVM. Make a storage pool somewhere on the system. Cockpit will make this process easy. You can also use Virsh or Virt-manager. I created mine in \/home\/libvirt\/. You are also going to need to see if you have a network bridge already setup. Ovirt should have setup one named ovirtmgmt using the nic you selected in the setup script.<\/p>\n<p>&nbsp;<\/p>\n<p>There are a few ways we can create the VM. commandline via visrh, Via Cockpit, and via Virtual Machine Manager. Im choosing the latter. Im connecting via ssh from another machine, so you need to have PKI setup to do so. ssh-keygen, then ssh-copy-host-id root@ip. On virt-manager the libvirt-url is qemu+ssh:\/\/user@ipaddress\/system. See the &#8220;Virsh Credentials&#8221; heading on this article for the credentials for virsh.<\/p>\n<p>&nbsp;<\/p>\n<p>You want to create a VM with the RHEL 8.2 Template. Q35 chipset with Bios Boot, VirtIO disk and network adaper, SATA CD with the SEED.iso if you have it, and Video QXL. Set it to have 4 CPU&#8217;s and at minimum 6GB of RAM.\u00a0 You will want to use the ovirtmgmt bridge if you can. If it is not there, go and add your main NIC to a bridge named ovirtmgmt. The hosted engine script should leave it intact. Go and start the VM, and the login to root with the pasword you set earlier. If you dont have the SEED.iso, you will need to enter single user mode to change the root password to something you know.<\/p>\n<h2>Configuring the Engine<\/h2>\n<p>Next, we are going to want to ssh into the virtal machine. From there, login to root and run engine-setup. Answer the questions, and then hopefully all will workout fine! If you cant ssh into the box, you need to make sure the firewall is allowing the port though on the VM, and check how your networking is setup. It should just be using a bridge not macvtap or nat.<\/p>\n<p>&nbsp;<\/p>\n<p>Once the ovirt-egnine is setup, you should be able to add the host that the VM is running on. You may have to manually run it via a QEMU one liner for the host to get added, but I&#8217;m not sure on that one, as it may restart libvirt and kill active virtual machines. Another option is to copy the VM to anther computer and have it run there, then copy it back after the host is done setting up.<\/p>\n<h2>Fix VDSM Certificate Error &#8220;ovirt Unable to access credentials \/etc\/pki\/vdsm\/libvirt-vnc\/ca-cert.pem: Permission denied\\nDomain installation does not appear to have been successful.&#8221;<\/h2>\n<p>run this script:<\/p>\n<pre>#!\/bin\/bash\r\n\r\nrm -rf \/etc\/pki\/vdsm\/certs\/*\r\nrm -rf \/etc\/pki\/vdsm\/keys\/vdsmkey.pem\r\nrm -rf \/etc\/pki\/vdsm\/libvirt-migrate\/*\r\nrm -rf \/etc\/pki\/vdsm\/libvirt-spice\/*\r\nrm -rf \/etc\/pki\/vdsm\/libvirt-vnc\/*\r\n\r\nvdsm-tool configure --force\r\n\r\ncp \/etc\/pki\/vdsm\/certs\/cacert.pem \/etc\/pki\/vdsm\/libvirt-spice\/ca-cert.pem\r\ncp \/etc\/pki\/vdsm\/keys\/vdsmkey.pem \/etc\/pki\/vdsm\/libvirt-spice\/server-key.pem\r\ncp \/etc\/pki\/vdsm\/certs\/vdsmcert.pem \/etc\/pki\/vdsm\/libvirt-spice\/server-cert.pem\r\ncp \/etc\/pki\/vdsm\/certs\/cacert.pem \/etc\/pki\/vdsm\/libvirt-vnc\/ca-cert.pem\r\ncp \/etc\/pki\/vdsm\/keys\/vdsmkey.pem \/etc\/pki\/vdsm\/libvirt-vnc\/server-key.pem\r\ncp \/etc\/pki\/vdsm\/certs\/vdsmcert.pem \/etc\/pki\/vdsm\/libvirt-vnc\/server-cert.pem\r\ncp \/etc\/pki\/vdsm\/certs\/vdsmcert.pem \/etc\/pki\/libvirt\/clientcert.pem\r\ncp \/etc\/pki\/vdsm\/keys\/vdsmkey.pem \/etc\/pki\/libvirt\/private\/clientkey.pem\r\ncp \/etc\/pki\/vdsm\/certs\/cacert.pem \/etc\/pki\/CA\/cacert.pem\r\n\r\nchown root:kvm \/etc\/pki\/vdsm\/libvirt-spice\/ca-cert.pem \/etc\/pki\/vdsm\/libvirt-vnc\/ca-cert.pem \/etc\/pki\/libvirt\/clientcert.pem\r\nchown vdsm:kvm \/etc\/pki\/vdsm\/libvirt-spice\/server-key.pem \/etc\/pki\/vdsm\/libvirt-spice\/server-cert.pem \/etc\/pki\/vdsm\/libvirt-vnc\/server-key.pem \/etc\/pki\/vdsm\/libvirt-vnc\/server-cert.pem \/etc\/pki\/libvirt\/private\/clientkey.pem \/etc\/pki\/CA\/cacert.pem\r\nchmod 644 \/etc\/pki\/vdsm\/libvirt-spice\/ca-cert.pem \/etc\/pki\/vdsm\/libvirt-vnc\/ca-cert.pem \/etc\/pki\/libvirt\/clientcert.pem\r\nchmod 440 \/etc\/pki\/vdsm\/libvirt-spice\/server-key.pem \/etc\/pki\/vdsm\/libvirt-spice\/server-cert.pem \/etc\/pki\/vdsm\/libvirt-vnc\/server-key.pem \/etc\/pki\/vdsm\/libvirt-vnc\/server-cert.pem \/etc\/pki\/libvirt\/private\/clientkey.pem \/etc\/pki\/CA\/cacert.pem\r\n\r\nsystemctl restart vdsmd libvirtd<\/pre>\n<h2>Virsh Credentials<\/h2>\n<p>To connect via virsh, you will have to run this localy to get into virsh. Alternitively, you can cat \/etc\/ovirt-hosted-engine\/virsh_auth.conf and see the username and password<\/p>\n<pre>virsh -c qemu:\/\/\/system?authfile=\/etc\/ovirt-hosted-engine\/virsh_auth.conf<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>oVirt is a great product, and it&#8217;s hosted engine is a great concept. It is a mostly automated deploy of a VM containing the oVirt Hosted Engine and the initial setup of your first host. This is similar to how VMware and XCP-ng\/XenServer does it, however the default install method of the hosted engine tries <br \/><a class=\"read-more-button\" href=\"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/\">Read More &raquo;<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,21,1,22],"tags":[],"coauthors":[39],"class_list":["post-938","post","type-post","status-publish","format-standard","hentry","category-linux","category-ovirt","category-uncategorized","category-virtualization"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Manually Deploy oVirt Hosted Engine and Fix Some Common Issues - Angry Sysadmins<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Manually Deploy oVirt Hosted Engine and Fix Some Common Issues - Angry Sysadmins\" \/>\n<meta property=\"og:description\" content=\"oVirt is a great product, and it&#8217;s hosted engine is a great concept. It is a mostly automated deploy of a VM containing the oVirt Hosted Engine and the initial setup of your first host. This is similar to how VMware and XCP-ng\/XenServer does it, however the default install method of the hosted engine tries Read More &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/\" \/>\n<meta property=\"og:site_name\" content=\"Angry Sysadmins\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-05T14:50:52+00:00\" \/>\n<meta name=\"author\" content=\"Ryan Parker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ryan Parker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/12\\\/grassyloki\\\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/12\\\/grassyloki\\\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\\\/\"},\"author\":{\"name\":\"Ryan Parker\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/651321cd35645fb6a4d8a75b7bc7c199\"},\"headline\":\"How to Manually Deploy oVirt Hosted Engine and Fix Some Common Issues\",\"datePublished\":\"2020-12-05T14:50:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/12\\\/grassyloki\\\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\\\/\"},\"wordCount\":1213,\"commentCount\":0,\"articleSection\":{\"0\":\"Linux\",\"1\":\"oVirt\",\"3\":\"Virtualization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/12\\\/grassyloki\\\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/12\\\/grassyloki\\\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\\\/\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/12\\\/grassyloki\\\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\\\/\",\"name\":\"How to Manually Deploy oVirt Hosted Engine and Fix Some Common Issues - Angry Sysadmins\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\"},\"datePublished\":\"2020-12-05T14:50:52+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/651321cd35645fb6a4d8a75b7bc7c199\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/12\\\/grassyloki\\\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/12\\\/grassyloki\\\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/12\\\/grassyloki\\\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/angrysysadmins.tech\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Manually Deploy oVirt Hosted Engine and Fix Some Common Issues\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/\",\"name\":\"Angry Sysadmins\",\"description\":\"A site full of angry sysadmins here to vent and help\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/angrysysadmins.tech\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/651321cd35645fb6a4d8a75b7bc7c199\",\"name\":\"Ryan Parker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g664d0e05248e51cb1d71b3f66c6f929d\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g\",\"caption\":\"Ryan Parker\"},\"description\":\"Professionally im a Infrastructure Security Specialist. I current maintain a homelab with about 3TB of RAM, 240+ TB of storage, tons of CPU cores, and 100gbit networking backbone in the garage running up my electricity bill.\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/author\\\/grassyloki\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Manually Deploy oVirt Hosted Engine and Fix Some Common Issues - Angry Sysadmins","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/","og_locale":"en_US","og_type":"article","og_title":"How to Manually Deploy oVirt Hosted Engine and Fix Some Common Issues - Angry Sysadmins","og_description":"oVirt is a great product, and it&#8217;s hosted engine is a great concept. It is a mostly automated deploy of a VM containing the oVirt Hosted Engine and the initial setup of your first host. This is similar to how VMware and XCP-ng\/XenServer does it, however the default install method of the hosted engine tries Read More &raquo;","og_url":"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/","og_site_name":"Angry Sysadmins","article_published_time":"2020-12-05T14:50:52+00:00","author":"Ryan Parker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ryan Parker","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/#article","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/"},"author":{"name":"Ryan Parker","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/651321cd35645fb6a4d8a75b7bc7c199"},"headline":"How to Manually Deploy oVirt Hosted Engine and Fix Some Common Issues","datePublished":"2020-12-05T14:50:52+00:00","mainEntityOfPage":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/"},"wordCount":1213,"commentCount":0,"articleSection":{"0":"Linux","1":"oVirt","3":"Virtualization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/","url":"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/","name":"How to Manually Deploy oVirt Hosted Engine and Fix Some Common Issues - Angry Sysadmins","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/#website"},"datePublished":"2020-12-05T14:50:52+00:00","author":{"@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/651321cd35645fb6a4d8a75b7bc7c199"},"breadcrumb":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/12\/grassyloki\/how-to-manually-deploy-ovirt-hosted-engine-and-fix-some-common-issues\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/angrysysadmins.tech\/"},{"@type":"ListItem","position":2,"name":"How to Manually Deploy oVirt Hosted Engine and Fix Some Common Issues"}]},{"@type":"WebSite","@id":"https:\/\/angrysysadmins.tech\/#website","url":"https:\/\/angrysysadmins.tech\/","name":"Angry Sysadmins","description":"A site full of angry sysadmins here to vent and help","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/angrysysadmins.tech\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/651321cd35645fb6a4d8a75b7bc7c199","name":"Ryan Parker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g664d0e05248e51cb1d71b3f66c6f929d","url":"https:\/\/secure.gravatar.com\/avatar\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g","caption":"Ryan Parker"},"description":"Professionally im a Infrastructure Security Specialist. I current maintain a homelab with about 3TB of RAM, 240+ TB of storage, tons of CPU cores, and 100gbit networking backbone in the garage running up my electricity bill.","url":"https:\/\/angrysysadmins.tech\/index.php\/author\/grassyloki\/"}]}},"_links":{"self":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/938","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/comments?post=938"}],"version-history":[{"count":20,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/938\/revisions"}],"predecessor-version":[{"id":973,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/938\/revisions\/973"}],"wp:attachment":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/media?parent=938"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/categories?post=938"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/tags?post=938"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/coauthors?post=938"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}