Upgrading oVirt Manager

This upgrade applies to the self-hosted engine of oVirt Manager. We need to first put the oVirt environment to the global maintenance mode. [root@trex ~]# hosted-engine --set-maintenance --mode=global To check the availability of oVirt Manager, run engine-upgrade-check command on the oVirt Manager machine. [root@ovirtm ~]# engine-upgrade-check ...omitted... VERB: Queue package ovirt-engine-setup for update VERB: Building transaction VERB: Transaction built VERB: Transaction Summary: VERB: install : ovirt-engine-setup-plugin-cinderlib-4.4.4.5-1.el8.noarch VERB: install : ovirt-engine-setup-base-4.4.4.5-1.el8.noarch VERB: install : ovirt-engine-setup-4....

December 26, 2020 · 5 min · 867 words · kenno

Configure oVirt Manager to Authenticate Against FreeIPA

This is quick note on how to configure an oVirt Manager or RHV Manager to use the FreeIPA to provide user external authentication. Here’s my servers’ information: IPA server: ipa.angkorian.io (CentOS 8.3.2011) oVirt Hosted-Engine: ovirtm.angkorian.io (CentOS 8.3.2011) IPA user: ovirtadmin First, open SSH connection to ovirtm as root and ensure that ovirt-engine-extension-aaa-ldap-setup package is installed. Here is a tip to figure out the name of this package - I’d search for ovirt*ldap....

December 26, 2020 · 4 min · 760 words · kenno

Backing Up a Self Hosted Engine Ovirt

We can create a fullback of oVirt engine without stopping the oVirt infrastructure using the ovirt-backup command. To do this, ssh to the oVirt hosted-engine and specify this backup scope, the name of backup file and the name of the log file. [root@ovirtm ~]# engine-backup --scope=all --mode=backup --file=ovirtm-backup_20201223.tgz --log=backup_20201223.log Start of engine-backup with mode 'backup' scope: all archive file: ovirtm-backup_20201223.tgz log file: backup_20201223.log Backing up: Notifying engine - Files - Engine database 'engine' - DWH database 'ovirt_engine_history' Packing into file 'ovirtm-backup_20201223....

December 23, 2020 · 1 min · 103 words · kenno

Passed Red Hat Virtualization Exam EX318

Another month, another Red Hat exam has been ticked off the list. This time, it’s about the Red Hat Virtualization, a technology based on oVirt. The code name of the exam is EX318, and as rumours has it, it’s one of the easiest Red Hat exams; I can’t agree more. The exam’s duration is 3 hours; it’s a hand-on closed book exams. The exam is based on Red Hat Virtualization version 4....

December 9, 2020 · 1 min · 170 words · kenno

Configure iSCSI Target on CentOS 8

I need to have an iSCSI storage to be used by my oVirt lab. The last time I had to create an iSCSI target was during the preparation of the RHCE 7 exam. Therefore, I think this is an opportunity to practice doing this again. First, install the required package. Then enable the target service, otherwise the target won’t work on the next reboot. [root@utility ~]# dnf install targetcli -y [root@utility ~]# systemctl enable target Run the targetcli command to create an iSCSI target/storage using the storage block (/dev/mapper/data_iscsi LVM volume)....

November 25, 2020 · 3 min · 615 words · kenno