[ovirt-users] Re: CLI Offline Engine Deployment failing to activate storage domain to gluster error 400
Gluster virt volume group has 2 options needed for oVirt:storage.owner-uid=36storage.owner-gid=36Check you have them, as it seems that the virt group (from GlusterFS package) is now missing them. /Maybe a bug ???/ I would simply chown the file(s) to 36:36 from the gluster mount and try again. You can run a find to fix it and give it another try.find /rhev/data-center/mnt/glusterSD/_ -not -uid 36 -not -god 36 -exec chown 36:36 {} \; Or to be even more safe, you can also set all files in the brick to be accessible to the user/group 36. find /gluster_bricks// -not -uid 36 -not -gid 36 -exec setfacl -m g:36:rwx {} \; find /gluster_bricks// -not -uid 36 -not -gid 36 -exec setfacl -m u:36:rwx {} \; Best Regards,Strahil Nikolov On Fri, May 6, 2022 at 0:47, Abe E wrote: Due to some complications in my 4.4 to 4.5 upgrade that have taken down ovirt for a few days I must go back to 4.4 to salvage what I can and rethink how I will upgrade. Due to that im having to rebuild my engine although I took backups prior. My issue currently is with 4.4 the engine deployment has an error regarding mirrors so I was able to use the ansible script to deploy offline and I am at the activate storage domain portion where it fails I am setting it to glusterfs with the host:/path as gluster-1.d.com:/engine The host machine i am building the engine on has a mount: gluster-1.d.com:/engine 104804356 13827696 90976660 14% /rhev/data-center/mnt/glusterSD/gluster-1.d.com:_engine within the mapping : drwxr-xr-x. 2 vdsm kvm 6 Apr 5 22:15 gluster-1.d.com:_data drwxr-xr-x. 4 vdsm kvm 38 May 5 15:00 gluster-1.d.com:_engine I am able to get into the temp engines ssh and ping the domain although I cannot seem to find where my steps are incorrect. [ INFO ] TASK [ovirt.ovirt.hosted_engine_setup : Activate storage domain] [ ERROR ] ovirtsdk4.Error: Fault reason is "Operation Failed". Fault detail is "[]". HTTP response code is 400. [ ERROR ] fatal: [localhost]: FAILED! => {"changed": false, "msg": "Fault reason is \"Operation Failed\". Fault detail is \"[]\". HTTP response code is 400."} Please specify the storage you would like to use (glusterfs, iscsi, fc, nfs)[nfs]: VDSM Logs are showing: 2022-05-05 15:30:32,719-0600 INFO (jsonrpc/6) [storage.StorageDomain] sdUUID=7f7cf7a4-f8fa-41a4-8e6a-275230655a8c (fileSD:535) 2022-05-05 15:30:32,734-0600 INFO (jsonrpc/6) [vdsm.api] FINISH getStorageDomainInfo error=Domain is either partially accessible or entirely inaccessible: ('7f7cf7a4-f8fa-41a4-8e6a-275230655a8c',) from=:::192.168.222.116,53112, flow_id=661d6831, task_id=480acb07-0a53-4bad-aa30-4cd18ce9e5f2 (api:52) 2022-05-05 15:30:32,734-0600 ERROR (jsonrpc/6) [storage.TaskManager.Task] (Task='480acb07-0a53-4bad-aa30-4cd18ce9e5f2') Unexpected error (task:877) Traceback (most recent call last): File "/usr/lib/python3.6/site-packages/vdsm/storage/task.py", line 884, in _run return fn(*args, **kargs) File "", line 2, in getStorageDomainInfo File "/usr/lib/python3.6/site-packages/vdsm/common/api.py", line 50, in method ret = func(*args, **kwargs) File "/usr/lib/python3.6/site-packages/vdsm/storage/hsm.py", line 2717, in getStorageDomainInfo dom = self.validateSdUUID(sdUUID) File "/usr/lib/python3.6/site-packages/vdsm/storage/hsm.py", line 313, in validateSdUUID sdDom.validate() File "/usr/lib/python3.6/site-packages/vdsm/storage/fileSD.py", line 538, in validate raise se.StorageDomainAccessError(self.sdUUID) vdsm.storage.exception.StorageDomainAccessError: Domain is either partially accessible or entirely inaccessible: ('7f7cf7a4-f8fa-41a4-8e6a-275230655a8c',) 2022-05-05 15:30:32,734-0600 INFO (jsonrpc/6) [storage.TaskManager.Task] (Task='480acb07-0a53-4bad-aa30-4cd18ce9e5f2') aborting: Task is aborted: "value=Domain is either partially accessible or entirely inaccessible: ('7f7cf7a4-f8fa-41a4-8e6a-275230655a8c',) abortedcode=379" (task:1182) 2022-05-05 15:30:32,735-0600 ERROR (jsonrpc/6) [storage.Dispatcher] FINISH getStorageDomainInfo error=Domain is either partially accessible or entirely inaccessible: ('7f7cf7a4-f8fa-41a4-8e6a-275230655a8c',) (dispatcher:83) 2022-05-05 15:30:32,735-0600 INFO (jsonrpc/6) [jsonrpc.JsonRpcServer] RPC call StorageDomain.getInfo failed (error 379) in 0.02 seconds (__init__:312) 2022-05-05 15:30:32,743-0600 INFO (jsonrpc/0) [vdsm.api] START createStoragePool(spUUID='fd385045-8355-4ef8-9970-ade84698ad89', poolName='LabNet', masterDom='7f7cf7a4-f8fa-41a4-8e6a-275230655a8c', domList=['7f7cf7a4-f8fa-41a4-8e6a-275230655a8c'], masterVersion=13, lockRenewalIntervalSec=5, leaseTimeSec=60, ioOpTimeoutSec=10, leaseRetries=3) from=:::192.168.222.116,53112, flow_id=661d6831, task_id=b58a0503-98c3-41a9-b5d7-3330e2985133 (api:48) 2022-05-05 15:30:32,743-0600 INFO (jsonrpc/0) [storage.StoragePool] updating pool fd385045-8355-4ef8-9970-ade84698ad89 backend from type NoneType instance 0x7f767
[ovirt-users] Re: FC Storage recover
Do all hosts have 'active ready running' ? P.S.: It will take me some time to look in the logs as it's hard to check them on the move. Best Regards,Strahil Nikolov On Thu, May 5, 2022 at 22:09, Nyika Csaba wrote: ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/3N2O34VFWX3F22SH4PK7SK7WZJ3LNCQE/ ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/6V5OAIYJCT2BGNVMONNNQAIMVYOMSENN/
[ovirt-users] Re: [IMPORTANT] Upgrade to postgresql-jdbc-42.2.14-1 breaks oVirt Engine 4.4/4.5
I'm surprised this hasn't been fixed yet. This bug causes the engine setup on new node 4.5 installs to fail. Had I not found this post, I wouldn't have figured out what was going on during the engine setup process. This really needs to be fixed. -Lucas ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/2OBKVGFZNF34VCEAEC4F33W4BNWF3ZY3/
[ovirt-users] Re: Ovirt engine Isuue
Hi Strahil, I have the same issue. I was running postgresql-jdbc version 42.2.14 then I downgraded to version 42.2.3 and I have the same problem. Is there any specific version I must use? Thanks, Jonathan ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/ZJV2IEPSPJT7WJFGPLJTWF3VUAWPGCYK/
[ovirt-users] Re: Ovirt engine Isuue
I upgraded my engine from 4.4 to 4.5 while excluding the postgresql- jdbc package. Works just fine, with the Web UI. What storage you use has nothing to do with the postgresql-jdbc issue. -Patrick Hibbs On Thu, 2022-05-05 at 18:31 +, brian.homr...@gmail.com wrote: > For everyone recommending the downgrade of postgresql-jdbc, can > someone CONFIRM that they have a running ovirt-engine WITH WEB UI > after they did this? > > I have a server that is running a hosted-engine instance which was > successfully written to shared storage so it deployed fully and ran > thru the Gluster external setup. > ___ > Users mailing list -- users@ovirt.org > To unsubscribe send an email to users-le...@ovirt.org > Privacy Statement: https://www.ovirt.org/privacy-policy.html > oVirt Code of Conduct: > https://www.ovirt.org/community/about/community-guidelines/ > List Archives: > https://lists.ovirt.org/archives/list/users@ovirt.org/message/HAZ7LDP5QGKPRSCCG7ZMJ3HBFXNQUN5Q/ ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/6XMTOWTQ662V33UEZWMM4UI2OQAGVNKH/
[ovirt-users] How do I automate VM backups?
So perhaps qemu-img isn't the best way to do this.I was hoping I could write a bash script or something to take a snapshot. Is that possible, or is there a better way? I was looking at https://github.com/wefixit-AT/oVirtBackup tonight, but haven't been able to get it to work as of yet. When I run it, it recognizes the backup storage domain, says that it has started taking a snapshot, but then immediately says the snapshot was created (at which point everything else fails): 2022-05-05 21:05:35,453: Start backup for: my-vm-name.example.com2022-05-05 21:05:35,554: The storage domain SpinningData is in state active2022-05-05 21:05:35,732: Snapshot creation started ...2022-05-05 21:05:35,732: Snapshot created2022-05-05 21:05:40,773: !!! No snapshot found !!!2022-05-05 21:05:40,773: All backups done2022-05-05 21:05:40,773: Backup failured for:2022-05-05 21:05:40,773: my-vm-name.example.com2022-05-05 21:05:40,773: Some errors occured during the backup, please check the log file The README says something about the python-sdk. How do I install that? I don't see that anywhere. [root@phys1 oVirtBackup-master]# yum info ovirt-engine-sdk-pythonUpdating Subscription Management repositories.Last metadata expiration check: 1:14:19 ago on Thu 05 May 2022 07:58:16 PM EDT.Error: No matching Packages to list[root@phys1 oVirtBackup-master]# yum whatprovides ovirt-engine-sdk-pythonUpdating Subscription Management repositories.Last metadata expiration check: 1:14:31 ago on Thu 05 May 2022 07:58:16 PM EDT.Error: No Matches found Is there a better way to run automated backups than this approach and/or using qemu-img? Sent with ProtonMail secure email. --- Original Message --- On Wednesday, May 4th, 2022 at 1:27 PM, David White via Users wrote: > I've recently been working with the qemu-img commands for some work that has > nothing to do with oVirt or anything inside an oVirt environment. > But learning and using these commands have given me an idea for automating > backups. > I believe that the following is true, but to confirm, would the qemu-img > commands be available on the oVirt hosts to take VM snapshots and disk images? > > Sent with ProtonMail secure email. publickey - dmwhite823@protonmail.com - 0x320CD582.asc Description: application/pgp-keys signature.asc Description: OpenPGP digital signature ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/EKMA4KN6IU7KXJAS4GWSAIO2YCRK2CFL/
[ovirt-users] CLI Offline Engine Deployment failing to activate storage domain to gluster error 400
Due to some complications in my 4.4 to 4.5 upgrade that have taken down ovirt for a few days I must go back to 4.4 to salvage what I can and rethink how I will upgrade. Due to that im having to rebuild my engine although I took backups prior. My issue currently is with 4.4 the engine deployment has an error regarding mirrors so I was able to use the ansible script to deploy offline and I am at the activate storage domain portion where it fails I am setting it to glusterfs with the host:/path as gluster-1.d.com:/engine The host machine i am building the engine on has a mount: gluster-1.d.com:/engine 104804356 13827696 90976660 14% /rhev/data-center/mnt/glusterSD/gluster-1.d.com:_engine within the mapping : drwxr-xr-x. 2 vdsm kvm 6 Apr 5 22:15 gluster-1.d.com:_data drwxr-xr-x. 4 vdsm kvm 38 May 5 15:00 gluster-1.d.com:_engine I am able to get into the temp engines ssh and ping the domain although I cannot seem to find where my steps are incorrect. [ INFO ] TASK [ovirt.ovirt.hosted_engine_setup : Activate storage domain] [ ERROR ] ovirtsdk4.Error: Fault reason is "Operation Failed". Fault detail is "[]". HTTP response code is 400. [ ERROR ] fatal: [localhost]: FAILED! => {"changed": false, "msg": "Fault reason is \"Operation Failed\". Fault detail is \"[]\". HTTP response code is 400."} Please specify the storage you would like to use (glusterfs, iscsi, fc, nfs)[nfs]: VDSM Logs are showing: 2022-05-05 15:30:32,719-0600 INFO (jsonrpc/6) [storage.StorageDomain] sdUUID=7f7cf7a4-f8fa-41a4-8e6a-275230655a8c (fileSD:535) 2022-05-05 15:30:32,734-0600 INFO (jsonrpc/6) [vdsm.api] FINISH getStorageDomainInfo error=Domain is either partially accessible or entirely inaccessible: ('7f7cf7a4-f8fa-41a4-8e6a-275230655a8c',) from=:::192.168.222.116,53112, flow_id=661d6831, task_id=480acb07-0a53-4bad-aa30-4cd18ce9e5f2 (api:52) 2022-05-05 15:30:32,734-0600 ERROR (jsonrpc/6) [storage.TaskManager.Task] (Task='480acb07-0a53-4bad-aa30-4cd18ce9e5f2') Unexpected error (task:877) Traceback (most recent call last): File "/usr/lib/python3.6/site-packages/vdsm/storage/task.py", line 884, in _run return fn(*args, **kargs) File "", line 2, in getStorageDomainInfo File "/usr/lib/python3.6/site-packages/vdsm/common/api.py", line 50, in method ret = func(*args, **kwargs) File "/usr/lib/python3.6/site-packages/vdsm/storage/hsm.py", line 2717, in getStorageDomainInfo dom = self.validateSdUUID(sdUUID) File "/usr/lib/python3.6/site-packages/vdsm/storage/hsm.py", line 313, in validateSdUUID sdDom.validate() File "/usr/lib/python3.6/site-packages/vdsm/storage/fileSD.py", line 538, in validate raise se.StorageDomainAccessError(self.sdUUID) vdsm.storage.exception.StorageDomainAccessError: Domain is either partially accessible or entirely inaccessible: ('7f7cf7a4-f8fa-41a4-8e6a-275230655a8c',) 2022-05-05 15:30:32,734-0600 INFO (jsonrpc/6) [storage.TaskManager.Task] (Task='480acb07-0a53-4bad-aa30-4cd18ce9e5f2') aborting: Task is aborted: "value=Domain is either partially accessible or entirely inaccessible: ('7f7cf7a4-f8fa-41a4-8e6a-275230655a8c',) abortedcode=379" (task:1182) 2022-05-05 15:30:32,735-0600 ERROR (jsonrpc/6) [storage.Dispatcher] FINISH getStorageDomainInfo error=Domain is either partially accessible or entirely inaccessible: ('7f7cf7a4-f8fa-41a4-8e6a-275230655a8c',) (dispatcher:83) 2022-05-05 15:30:32,735-0600 INFO (jsonrpc/6) [jsonrpc.JsonRpcServer] RPC call StorageDomain.getInfo failed (error 379) in 0.02 seconds (__init__:312) 2022-05-05 15:30:32,743-0600 INFO (jsonrpc/0) [vdsm.api] START createStoragePool(spUUID='fd385045-8355-4ef8-9970-ade84698ad89', poolName='LabNet', masterDom='7f7cf7a4-f8fa-41a4-8e6a-275230655a8c', domList=['7f7cf7a4-f8fa-41a4-8e6a-275230655a8c'], masterVersion=13, lockRenewalIntervalSec=5, leaseTimeSec=60, ioOpTimeoutSec=10, leaseRetries=3) from=:::192.168.222.116,53112, flow_id=661d6831, task_id=b58a0503-98c3-41a9-b5d7-3330e2985133 (api:48) 2022-05-05 15:30:32,743-0600 INFO (jsonrpc/0) [storage.StoragePool] updating pool fd385045-8355-4ef8-9970-ade84698ad89 backend from type NoneType instance 0x7f767080b9d0 to type StoragePoolDiskBackend instance 0x7f760c4dd308 (sp:168) 2022-05-05 15:30:32,743-0600 INFO (jsonrpc/0) [storage.StoragePool] spUUID=fd385045-8355-4ef8-9970-ade84698ad89 poolName=LabNet master_sd=7f7cf7a4-f8fa-41a4-8e6a-275230655a8c domList=['7f7cf7a4-f8fa-41a4-8e6a-275230655a8c'] masterVersion=13 {'LEASERETRIES': 3, 'LEASETIMESEC': 60, 'LOCKRENEWALINTERVALSEC': 5, 'IOOPTIMEOUTSEC': 10} (sp:624) 2022-05-05 15:30:32,743-0600 INFO (jsonrpc/0) [storage.StorageDomain] sdUUID=7f7cf7a4-f8fa-41a4-8e6a-275230655a8c (fileSD:535) 2022-05-05 15:30:32,759-0600 ERROR (jsonrpc/0) [storage.StoragePool] Unexpected error (sp:640) Traceback (most recent call last): File "/usr/lib/python3.6/site-packages/vdsm/storage/sp.py", line 635, in create domain.validate() File
[ovirt-users] Re: Ovirt engine Isuue
For everyone recommending the downgrade of postgresql-jdbc, can someone CONFIRM that they have a running ovirt-engine WITH WEB UI after they did this? I have a server that is running a hosted-engine instance which was successfully written to shared storage so it deployed fully and ran thru the Gluster external setup. ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/HAZ7LDP5QGKPRSCCG7ZMJ3HBFXNQUN5Q/
[ovirt-users] Re: FC Storage recover
Login over ssh to the SPM, then trigger the Activate button and then copy the vdsm log (last one) from the host.Also check with 'multipath -ll 36005076300808894600a' if all hosts have the multipath device and it's status is good.oVirt refuses to activate if it can't mount a file-based storage (NFS, Gluster) or access the LV on the block-based storage domains (FC, iSCSI,etc). Also in the vdsm logs of the SPM should have a clue why it fails to activate. I'm not sure if oVirt uses SCSI reservations or not, but it's worth checking). Best Regards,Strahil Nikolov On Thu, May 5, 2022 at 16:36, Nyika Csaba wrote: ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/6YVZYWT2KSKDHSNJRHGES5PH2EY7SFCF/ ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/BHQCD76ZWLJWZWW2EC7RYOWCMV4UTDQZ/
[ovirt-users] Re: Getting error on oVirt installation
I have this exact same problem. The engine IP and name resolves correctly. ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/ATNDKCFRASAOKVGB72PWJAJMSDT4DGEU/
[ovirt-users] Re: ovirt engine restore: Failed to construct component instance
great!! thnx works just dnf downgrade postgresql-jdbc systemctl restart ovirt-engine have fun... ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/WM6TNXVJGQE2CWZNKWRZED2NYJL63TPZ/
[ovirt-users] Re: FC Storage recover
No, the 'Activate' button is active, but activate job failed.So if i check the lsblk on a node, in this FC ID i hava got only a simpe line like this:sdao 66:128 0 51T 0 disk └─36005076300808894600a 253:119 0 51T 0 mpathThe others (for example):sdan 66:112 0 25T 0 disk └─360050763008088946008 253:15 0 25T 0 mpath ├─1831603c--e583--412a--b20e--f97b31ad9a55-metadata 253:39 0 512M 0 lvm ├─1831603c--e583--412a--b20e--f97b31ad9a55-ids 253:50 0 128M 0 lvm ├─1831603c--e583--412a--b20e--f97b31ad9a55-leases 253:84 0 2G 0 lvm ├─1831603c--e583--412a--b20e--f97b31ad9a55-outbox 253:97 0 128M 0 lvm ├─1831603c--e583--412a--b20e--f97b31ad9a55-inbox 253:98 0 128M 0 lvm ├─1831603c--e583--412a--b20e--f97b31ad9a55-master 253:99 0 1G 0 lvm ├─1831603c--e583--412a--b20e--f97b31ad9a55-xleasesI think on this storge has a data corruption maybe.Best,csabany--- Eredeti levél Feladó: Strahil Nikolov Dátum: 2022 május 5 14:43:41Tárgy: Re: [ovirt-users] Re: FC Storage recoverCímzett: csab...@freemail.hu users@ovirt.org If it's inactive, is the 'Activate' button greyed out ?Best Regards,Strahil NikolovOn Thu, May 5, 2022 at 8:41, Nyika Csaba wrote:___Users mailing list -- users@ovirt.orgTo unsubscribe send an email to users-leave@ovirt.orgPrivacy Statement: https://www.ovirt.org/privacy-policy.htmloVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/ZKRDNS6X75HWVR4V5RYJNDHEEKFSSV7J/___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/6YVZYWT2KSKDHSNJRHGES5PH2EY7SFCF/
[ovirt-users] Re: Ovirt 4.5.0.1 self-hosted deployment fails - jboss errors
Did you try to downgrade postgresql-jdbc package and restart (either engine service or the whole VM)? Best Regards,Strahil Nikolov Hi, did you resolve this? I am trying to setup a new environment also and can't get past the errors anymore... > Hello, > > I’m trying to deploy a self-hosted engine on Ovirt node v4.5.0.1, but the > deployment fails > in the final stages with the following errors in “Server.log” file. > > > I hope that you have an Idea about that. I ran the installer 3 times (cockpit > installer. > > Thank you, ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/R4KQBR2VEZD3QGA2HYUQWYWSQ5YJ2BJC/ ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/H2Y3UMJVWY6QDAAWB2DSEXZTRBHMUWMS/
[ovirt-users] Re: vnc certificate renew
On 5/5/22 10:42, si...@justconnect.ie wrote: Hi Jiri, I understand the libvirt-vnc part of this thread but can you explain the following in more detail please: "when you update also CA then cp /etc/pki/vdsm/certs/cacert.pem /etc/pki/vdsm/libvirt-vnc/ca-cert.pem" sorry, it is probably not necessary. In my particular case I had expired engine.cer so I have regenerate it during engine-setup process. Then I enroll certificates on all hosts. After that I mentioned that migrations to some hosts fails. Qemu log shows 2022-05-02T13:55:05.987598Z qemu-kvm: Our own certificate /etc/pki/vdsm/libvirt-vnc/server-cert.pem failed validation against /etc/pki/vdsm/libvirt-vnc/ca-cert.pem: The certificate hasn't got a known issuer so I copied key, cert and also cacert.pem to libvirt-vnc which solves my issue. When does /etc/pki/vdsm/certs/cacert.pem get updated (checked mine and it's 2021) if not by the 'Enroll Certificate' action? I believe cacert could be updated during engine-setup process but I am not sure about this. In my case CA was not renewed openssl x509 -in /etc/pki/ovirt-engine/ca.pem -noout -text Validity Not Before: Aug 30 14:45:05 2015 GMT Not After : Aug 28 14:45:05 2025 GMT so I have no idea why /etc/pki/vdsm/libvirt-vnc/server-cert.pem cannot be validated against /etc/pki/vdsm/libvirt-vnc/ca-cert.pem on host. Copying /etc/pki/vdsm/certs/cacert.pem to /etc/pki/vdsm/libvirt-vnc/ca-cert.pem solved this issue... Cheers, Jiri Kind Regards Simon... ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/HVT3KMVESR5ND7S4LMI6PJDVZRUN63QE/ smime.p7s Description: S/MIME Cryptographic Signature ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/A5YBO3JR3DLOIIKKA46XQXX7U46QPFQ4/
[ovirt-users] Re: HELP ME! Failed to validate the SSL certificate for localhost:443
Can you try to cleanup and deploy again ?When it fails, use 'ps -ef' to identify if the VM is running or not. Best Regards,Strahil Nikolov The downgrade of the "Postgresql-jdbc" method did not help this problem go away. Thankyou, Bunnatee ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/2D7EJV3EOB3MTSRUPQBXBU6YTMFV4U6I/ ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/RZ7I6K45SDYI4YA6VD35ZFAW2LMIW3AS/
[ovirt-users] Re: FC Storage recover
If it's inactive, is the 'Activate' button greyed out ? Best Regards,Strahil Nikolov On Thu, May 5, 2022 at 8:41, Nyika Csaba wrote: ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/ZKRDNS6X75HWVR4V5RYJNDHEEKFSSV7J/ ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/JPRKQ34HJDOON5SIZCVWAOP5MX7MBZGY/
[ovirt-users] Re: Ovirt engine Isuue
Try to downgrade the postgresql-jdbc package and restart. Best Regards,Strahil Nikolov On Thu, May 5, 2022 at 9:34, sachendra.shu...@yagnaiq.com wrote: We have installed ovirt engine on centos 8 by follow the below commond nano /etc/hosts your-server-ip centos.example.com dnf install https://resources.ovirt.org/pub/yum-repo/ovirt-release44.rpm dnf module enable javapackages-tools -y dnf module enable pki-deps -y dnf module enable postgresql:12 -y dnf update -y dnf install ovirt-engine -y engine-setup (when we require latest version setsebool -P httpd_can_network_connect 1 firewall-cmd --permanent --zone public --add-port 80/tcp firewall-cmd --permanent --zone public --add-port 443/tcp firewall-cmd --reload But we are unable to connect by browser shwing below error. 500 - Internal Server Error ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/N7FTY5ZY6SWJHDNIK27G5YVQ4QTW5D6Z/ ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/Y43OEEY43IVMOGZKGPEO6UUMCKBGPQBW/
[ovirt-users] Re: ovirt engine restore: Failed to construct component instance
Try to downgrade postgresql-jdbc (in the engine ) package and restart . Best Regards,Strahil Nikolov On Thu, May 5, 2022 at 0:54, Rafhael Almeida wrote: Please your help, I restore a engine db correctly in a Fresh Installation on my same server: engine-backup --mode=restore --file=ovirt.2022-04-29_12h00.tar.gz --log=ovirt_log.2022-04-29_12h00.out --restore-permissions --provision-all-databases after engine-setup (I dont' see any warning o error, everything is correct) but when try to accces in my private domain, to access to ovirt-engine, don't work, I see in the files: /etc/ovirt-engine/engine.conf.d/10-setup-cinderlib-database.conf /etc/ovirt-engine/engine.conf.d/10-setup-database.conf /etc/ovirt-engine/engine.conf.d/10-setup-dwh-database.conf another password, in my last engine db, I have another passw to connect to db when i restart the service systemctl restart ovirt-engine y see this logs: *my server.log * Service status report WFLYCTL0186: Services which failed to start: service jboss.deployment.subunit."engine.ear"."bll.jar".component.Backend.START: java.lang.IllegalStateException: WFLYEE0042: Failed to construct component instance WFLYCTL0448: 2 additional services are down due to their dependencies being missing or failed 2022-05-04 16:09:25,234-05 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server 2022-05-04 16:09:25,238-05 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0026: WildFly Full 23.0.2.Final (WildFly Core 15.0.1.Final) started (with errors) in 15182ms - Started 1668 of 1888 services (6 services failed or missing dependencies, 393 services are lazy, passive or on-demand) 2022-05-04 16:09:25,240-05 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:8706/management 2022-05-04 16:09:25,241-05 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:8706 *--* pd. my logs: https://filedn.com/lYVRQ0f0QUTQVmMCo3Bk7DY/server.log my ideas ran out, Please your help !! ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/EK7DJKWMLRB7P42LYOGRYUKSHMNCMEXZ/ ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/ASQYFTBYYEJWU2UFBGE2AXPLOATBFXLE/
[ovirt-users] Re: Ovirt 4.5.0.1 self-hosted deployment fails - jboss errors
Hi, did you resolve this? I am trying to setup a new environment also and can't get past the errors anymore... > Hello, > > I’m trying to deploy a self-hosted engine on Ovirt node v4.5.0.1, but the > deployment fails > in the final stages with the following errors in “Server.log” file. > > > I hope that you have an Idea about that. I ran the installer 3 times (cockpit > installer. > > Thank you, ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/R4KQBR2VEZD3QGA2HYUQWYWSQ5YJ2BJC/
[ovirt-users] Re: Ovirt engine Isuue
Try downgrading postgresql-jdbc (https://lists.ovirt.org/archives/list/users@ovirt.org/message/N6MNSV4ZK26V5NVPBFAMHQPAQAWUR2OE/) dnf downgrade postgresql-jdbc systemctl restart ovirt-engine Am 05.05.2022 08:18 schrieb sachendra.shu...@yagnaiq.com: > > We have installed ovirt engine on centos 8 by follow the below commond > > nano /etc/hosts > your-server-ip centos.example.com > dnf install https://resources.ovirt.org/pub/yum-repo/ovirt-release44.rpm > dnf module enable javapackages-tools -y > dnf module enable pki-deps -y > dnf module enable postgresql:12 -y > dnf update -y > dnf install ovirt-engine -y > engine-setup (when we require latest version > setsebool -P httpd_can_network_connect 1 > firewall-cmd --permanent --zone public --add-port 80/tcp > firewall-cmd --permanent --zone public --add-port 443/tcp > firewall-cmd --reload > > > But we are unable to connect by browser shwing below error. > > 500 - Internal Server Error > ___ > Users mailing list -- users@ovirt.org > To unsubscribe send an email to users-le...@ovirt.org > Privacy Statement: https://www.ovirt.org/privacy-policy.html > oVirt Code of Conduct: > https://www.ovirt.org/community/about/community-guidelines/ > List Archives: > https://lists.ovirt.org/archives/list/users@ovirt.org/message/N7FTY5ZY6SWJHDNIK27G5YVQ4QTW5D6Z/ ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/FA6BLIAIYY7GOXJLLYNFSZB73JB7EKCP/
[ovirt-users] Re: vnc certificate renew
Hi Jiri, I understand the libvirt-vnc part of this thread but can you explain the following in more detail please: "when you update also CA then cp /etc/pki/vdsm/certs/cacert.pem /etc/pki/vdsm/libvirt-vnc/ca-cert.pem" When does /etc/pki/vdsm/certs/cacert.pem get updated (checked mine and it's 2021) if not by the 'Enroll Certificate' action? Kind Regards Simon... ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/HVT3KMVESR5ND7S4LMI6PJDVZRUN63QE/
[ovirt-users] Re: HELP ME! Failed to validate the SSL certificate for localhost:443
The downgrade of the "Postgresql-jdbc" method did not help this problem go away. Thankyou, Bunnatee ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement: https://www.ovirt.org/privacy-policy.html oVirt Code of Conduct: https://www.ovirt.org/community/about/community-guidelines/ List Archives: https://lists.ovirt.org/archives/list/users@ovirt.org/message/2D7EJV3EOB3MTSRUPQBXBU6YTMFV4U6I/