[ovirt-users] Deployment failed, ovirt-engine-appliance haved beend installed by rpm on host

2021-09-14 Thread lingguangy
[ INFO ] TASK [ovirt.ovirt.engine_setup : Gather facts on installed packages]
[ INFO ] ok: [localhost -> 192.168.1.248]
[ INFO ] TASK [ovirt.ovirt.engine_setup : Fail when firewall manager is not 
installed]
[ INFO ] skipping: [localhost]
[ INFO ] TASK [ovirt.ovirt.engine_setup : Install required packages for oVirt 
Engine deployment]
[ INFO ] ok: [localhost]
[ INFO ] TASK [ovirt.ovirt.engine_setup : Install oVirt Engine package]
[ ERROR ] fatal: [localhost -> 192.168.1.248]: FAILED! => {"changed": false, 
"msg": "Failed to download metadata for repo 
'ovirt-4.4-centos-stream-advanced-virtualization': Cannot download repomd.xml: 
Cannot download repodata/repomd.xml: All mirrors were tried", "rc": 1, 
"results": []}
[ INFO ] TASK [ovirt.ovirt.hosted_engine_setup : Sync on engine machine]
[ INFO ] changed: [localhost -> 192.168.1.248]
[ INFO ] TASK [ovirt.ovirt.hosted_engine_setup : Set destination directory path]
[ INFO ] ok: [localhost -> localhost]
[ INFO ] TASK [ovirt.ovirt.hosted_engine_setup : Create destination directory]
[ INFO ] changed: [localhost -> localhost]
[ INFO ] TASK [ovirt.ovirt.hosted_engine_setup : include_tasks]
[ INFO ] ok: [localhost]
[ INFO ] TASK [ovirt.ovirt.hosted_engine_setup : Find the local appliance image]
[ INFO ] ok: [localhost -> localhost]
[ INFO ] TASK [ovirt.ovirt.hosted_engine_setup : Set local_vm_disk_path]
[ INFO ] ok: [localhost -> localhost]
[ INFO ] TASK [ovirt.ovirt.hosted_engine_setup : Give the vm time to flush 
dirty buffers]
[ INFO ] ok: [localhost -> localhost]
[ INFO ] TASK [ovirt.ovirt.hosted_engine_setup : Copy engine logs]
[ INFO ] changed: [localhost]
[ INFO ] TASK [ovirt.ovirt.hosted_engine_setup : Notify the user about a 
failure]
[ ERROR ] fatal: [localhost]: FAILED! => {"changed": false, "msg": "There was a 
failure deploying the engine on the local engine VM. The system may not be 
provisioned according to the playbook results: please check the logs for the 
issue, fix accordingly or re-deploy from scratch.\n"}
___
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/AGVTHMRFWTHZF7ONXALTOBPALNMMUAWT/


[ovirt-users] Re: oVirt 4.3 DWH with Grafana

2021-09-14 Thread matthew.st...@fujitsu.com
The instructions to modify the json files are missing. (Using find and sed to 
change all instances of v4_4_ to v4_3_ before importing them into Grafana)

This is from an Oracle Blog on the doing this with OLVM 4.3 (which is basically 
a repackaged oVirt 4.3)

Build Grafana Dashboard for Oracle Linux Virtualization Manager 
4.3

From: Tommy Sway 
Sent: Tuesday, September 14, 2021 3:01 AM
To: 'Michal Gutowski' ; 'Vrgotic, Marko' 

Cc: users@ovirt.org
Subject: [ovirt-users] Re: oVirt 4.3 DWH with Grafana

The oVirt version I'm using is 4.3, and I get an error when I import JSON.
pq: relation"v4_4_latest_configuration_datacenters" does not exist.



From: users-boun...@ovirt.org 
mailto:users-boun...@ovirt.org>> On Behalf Of Michal 
Gutowski
Sent: Wednesday, November 25, 2020 12:26 AM
To: Vrgotic, Marko mailto:m.vrgo...@activevideo.com>>
Cc: users@ovirt.org
Subject: [ovirt-users] Re: oVirt 4.3 DWH with Grafana

Hi Marko,

I've tested this myself as I like playing with various Grafana use-cases and 
following steps allow you to set up Grafana Monitoring for your oVirt 4.3 
environment and re-use all Grafana Dashboards from latest oVirt 4.4 on a 
previous release.

1. Allowing Grafana to connect to oVirt DWH database (Data Warehouse)

Login to the oVirt engine 4.3 and create a user "grafana" with password 
"grafana" that will get a read-only access to the ovirt_engine_history database 
and will be able to use public schema

# su - postgres -c 'scl enable rh-postgresql10 bash'
# psql -U postgres -c "CREATE ROLE grafana WITH LOGIN ENCRYPTED PASSWORD 
'grafana';" -d ovirt_engine_history
# psql -U postgres -c "GRANT CONNECT ON DATABASE ovirt_engine_history TO 
grafana;"
# psql -U postgres -c "GRANT USAGE ON SCHEMA public TO grafana;" 
ovirt_engine_history

Generate the rest of the permissions that will be granted to the newly created 
user and save them to a file:

# psql -U postgres -c "SELECT 'GRANT SELECT ON ' || relname || ' TO grafana;' 
FROM pg_class JOIN pg_namespace ON pg_namespace.oid = pg_class.relnamespace 
WHERE nspname = 'public' AND relkind IN ('r', 'v');" --pset=tuples_only=on  
ovirt_engine_history > grant.sql

Use the file you created in the previous step to grant permissions to the newly 
created user:
# psql -U postgres -f grant.sql ovirt_engine_history

Remove the file you used to grant permissions:
# rm grant.sql

Exit the postgres user shell by pressing Ctrl+d

Add the following lines for the newly created user to 
/var/opt/rh/rh-postgresql10/lib/pgsql/data/pg_hba.conf preceding the line 
beginning local all all

hostovirt_engine_history grafana 0.0.0.0/0   md5
hostovirt_engine_history grafana ::0/0   md5

Reload postgres service
# systemctl reload rh-postgresql10-postgresql

2. Installing Grafana

You can install Grafana directly on the oVirt Engine machine (this is how it's 
done in oVirt 4.4) or on a separate machine. Following steps shows how you can 
install Grafana on a Oracle Linux 7 server. Note: Oracle provides Grafana in 
the OLCNE yum repository - you only need to install the repository definition 
package to pickup Grafana and it's dependencies.

# yum install oraclelinux-release-el7
# yum install oracle-olcne-release-el7
# yum-config-manager --enable ol7_optional_latest ol7_olcne11
# yum install grafana
# systemctl enable --now grafana-server

3. Adding oVirt DWH database as Data Source in Grafana

Login to Grafana (default port 3000) and navigate to Configuration -> 
DataSources and click on Add Data Source button.

Select PostgreSQL source and use the following settings (adjust the Host IP 
address to match your oVirt Engine IP but do not change the Name):
Name: oVirt DWH
Host: your-engine-ip-address:5432
user: grafana
pass: grafana
SSL mode: disable

4. Importing Dashboards from oVirt 4.4

Download Grafana Dashboards from oVirt 4.4 repository: 
https://github.com/oVirt/ovirt-dwh/tree/master/packaging/conf/grafana-dashboards

You can now import them in Grafana by navigating to Create -> Import and 
clicking on Upload .json file or by simply pasting JSON content.

I've tested this on my OLVM/oVirt 4.3 and works perfectly well.

Have fun!
Michal

Michał Gutowski
Principal Solutions Engineer, EMEA
+48 665 222 979

Oracle Open Cloud Infrastructure Software - Linux & Virtualization

On 24 Nov 2020, at 11:53, Vrgotic, Marko 
mailto:m.vrgo...@activevideo.com>> wrote:

Dear oVirt folks,

Thank you all for suggestions.

I will give it a go and see how far I get.

-
kind regards/met vriendelijke groeten

Marko Vrgotic
Sr. System Engineer @ System Administration

ActiveVideo
o: +31 (35) 6774131
m: +31 (65) 5734174
e: m.vrgo...@activevideo.com
w: 

[ovirt-users] 2-node with FC Storage

2021-09-14 Thread carsten . recker
Hello,

i want to run an 2-node oVirt cluster, where both nodes are connected to an FC 
Storage. What is the best practice to connect LUNs to it, so that you can 
switch VMs between both nodes?

Thanks
___
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/A2IYTKNQWETZ2WQTXCJSDXYAJHKW2PPT/


[ovirt-users] REST API import VM from Export Domain

2021-09-14 Thread christian . peater
i'm using OLVM 4.3.10 oVirt and i'm trying to import a VM from the Export 
Storage Domain with the REST API.

curl command is:

curl \
-X POST  \
--header "Version:4" \
--header "Accept:application/xml" \
--header "Content-type:application/xml" \
--user $_OLVM_USERNAME:$_OLVM_PASSWORD \
--data '


'$DST_SD'


'$CLUSTER'

true

'$VM_NAME'


'
https://$_OLVM_HOSTNAME/ovirt-engine/api/storagedomains/$SRC_SD_ID/vms/$SD_VM_ID/import

Response is:


400 Bad Request

Bad Request
Your browser sent a request that this server could not understand.



When i use the same syntax to just get a list of importable VMs there is no 
error and the Response is a xml entity.

Any idea?
___
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/QBOLEYD64OZ6TZOZYEVFJPJXJXRDTBPO/


[ovirt-users] Re: HE and Node upgrade procedures

2021-09-14 Thread Diggy Mc
Thank you for the info.  It is proving very useful.  I was able to upgrade the 
Hosted Engine successfully and without incident.  Unfortunately upgrading hosts 
failed.  I'll create a new thread for that.  Anyways, thanks again.  Your help 
got things moving on my end.  :)
___
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/LDI2CVVYY7JSJ5EY2OVMOI6WZ6GZIO6D/


[ovirt-users] Re: what kind of managed block can oVirt manage ?

2021-09-14 Thread Tommy Sway
Thank you very much!

By the way, Is there some item list that show the changes between 4.3 and 4.4 ?






-Original Message-
From: users-boun...@ovirt.org  On Behalf Of Benny 
Zlotnik
Sent: Tuesday, September 14, 2021 8:08 PM
To: Tommy Sway 
Cc: users 
Subject: [ovirt-users] Re: what kind of managed block can oVirt manage ?

Yes, but please be aware that 4.3 is EOL for a while, there have been 
significant changes between 4.3 and 4.4 in all relevant components

On Tue, Sep 14, 2021 at 2:39 PM Tommy Sway  wrote:
>
> As I understand it now, on 4.3 I need to enable it like this:
> 1. Activate the REPO source and install cinder relevant software 2, 
> when run the engine-setup add -s ManagedBlockDomainSupported = true 
> option 3. Add ManagedBlockDomain after installation Do I understand 
> this correctly?
>
> Thank you very much!
>
>
>
>
> -Original Message-
> From: Benny Zlotnik 
> Sent: Tuesday, September 14, 2021 7:19 PM
> To: Tommy Sway 
> Cc: users 
> Subject: Re: [ovirt-users] Re: what kind of managed block can oVirt manage ?
>
> On Tue, Sep 14, 2021 at 2:11 PM Tommy Sway  wrote:
> >
> > Do you mean that I don't need to manually add cider related repo in the new 
> > version, the engine-setup process will automatically add cinder related 
> > repo and install the package?
> it will add the repo but will not install the package as we had to 
> revert this for now
> > All I need to do is select CinderLib option during Engine setup?
> in 4.3 you also need to enable:
> $ engine-config -s ManagedBlockDomainSupported=true
> > Then I can add Managed Block Domains in the admin interface?
> after enabling, yes
>
___
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/VYRJKXLFZ7EKNKVRZGCDIMTLK3SDXZKC/
___
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/ENFNMFAUJKXTC25AYZSGMX3WJQ2OB22G/


[ovirt-users] Re: what kind of managed block can oVirt manage ?

2021-09-14 Thread Benny Zlotnik
Yes, but please be aware that 4.3 is EOL for a while, there have been
significant changes between 4.3 and 4.4 in all relevant components

On Tue, Sep 14, 2021 at 2:39 PM Tommy Sway  wrote:
>
> As I understand it now, on 4.3 I need to enable it like this:
> 1. Activate the REPO source and install cinder relevant software
> 2, when run the engine-setup add -s ManagedBlockDomainSupported = true option
> 3. Add ManagedBlockDomain after installation
> Do I understand this correctly?
>
> Thank you very much!
>
>
>
>
> -Original Message-
> From: Benny Zlotnik 
> Sent: Tuesday, September 14, 2021 7:19 PM
> To: Tommy Sway 
> Cc: users 
> Subject: Re: [ovirt-users] Re: what kind of managed block can oVirt manage ?
>
> On Tue, Sep 14, 2021 at 2:11 PM Tommy Sway  wrote:
> >
> > Do you mean that I don't need to manually add cider related repo in the new 
> > version, the engine-setup process will automatically add cinder related 
> > repo and install the package?
> it will add the repo but will not install the package as we had to revert 
> this for now
> > All I need to do is select CinderLib option during Engine setup?
> in 4.3 you also need to enable:
> $ engine-config -s ManagedBlockDomainSupported=true
> > Then I can add Managed Block Domains in the admin interface?
> after enabling, yes
>
___
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/VYRJKXLFZ7EKNKVRZGCDIMTLK3SDXZKC/


[ovirt-users] Re: what kind of managed block can oVirt manage ?

2021-09-14 Thread Tommy Sway
As I understand it now, on 4.3 I need to enable it like this:
1. Activate the REPO source and install cinder relevant software
2, when run the engine-setup add -s ManagedBlockDomainSupported = true option
3. Add ManagedBlockDomain after installation
Do I understand this correctly?

Thank you very much!




-Original Message-
From: Benny Zlotnik  
Sent: Tuesday, September 14, 2021 7:19 PM
To: Tommy Sway 
Cc: users 
Subject: Re: [ovirt-users] Re: what kind of managed block can oVirt manage ?

On Tue, Sep 14, 2021 at 2:11 PM Tommy Sway  wrote:
>
> Do you mean that I don't need to manually add cider related repo in the new 
> version, the engine-setup process will automatically add cinder related repo 
> and install the package?
it will add the repo but will not install the package as we had to revert this 
for now
> All I need to do is select CinderLib option during Engine setup?
in 4.3 you also need to enable:
$ engine-config -s ManagedBlockDomainSupported=true
> Then I can add Managed Block Domains in the admin interface?
after enabling, yes
___
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/ZRFAD7E63K5WJUYQJIAWTBKOZS6MUT2T/


[ovirt-users] Re: what kind of managed block can oVirt manage ?

2021-09-14 Thread Tommy Sway
Do you mean that I don't need to manually add cider related repo in the new 
version, the engine-setup process will automatically add cinder related repo 
and install the package?
All I need to do is select CinderLib option during Engine setup?
Then I can add Managed Block Domains in the admin interface?



-Original Message-
From: Benny Zlotnik  
Sent: Tuesday, September 14, 2021 6:53 PM
To: Tommy Sway 
Cc: users 
Subject: Re: [ovirt-users] Re: what kind of managed block can oVirt manage ?

No, the difference is that we setup the required repos (we also installed the 
dependencies, but we had to revert this for now). The setup of a Managed Block 
Storage Domain remains the same

On Tue, Sep 14, 2021 at 1:49 PM Tommy Sway  wrote:
>
> Do you mean that in the new version, I only need to configure CINDERLib when 
> running Ovirt-Engine, and then I can connect to Ceph server directly in the 
> admin interface?
>
>
>
>
>
>
>
>
> -Original Message-
> From: users-boun...@ovirt.org  On Behalf Of 
> Benny Zlotnik
> Sent: Tuesday, September 14, 2021 4:56 PM
> To: Tommy Sway 
> Cc: users 
> Subject: [ovirt-users] Re: what kind of managed block can oVirt manage ?
>
> I see, if you use 4.3 you will have to add the repos manually on the 
> ovirt-engine node and vdsm hosts If you did not enable cinderlib in 
> engine-setup previously you have to do that, yes
>
> On Tue, Sep 14, 2021 at 11:43 AM Tommy Sway  wrote:
> >
> > But my system version is 4.3, so how can I activate it?
> > Do I should install as documented before running engine- Setup?
> > It seems that CiderLib is also given a database to create while running 
> > engine-setup,so I guess the setup-config maybe also important.
> >
> >
> >
> >
> >
> > -Original Message-
> > From: users-boun...@ovirt.org  On Behalf Of 
> > Benny Zlotnik
> > Sent: Tuesday, September 14, 2021 4:09 PM
> > To: Tommy Sway 
> > Cc: users 
> > Subject: [ovirt-users] Re: what kind of managed block can oVirt manage ?
> >
> > If it's already enabled there's no need to run it again. I looked at 
> > the doc again now, and it's slightly outdated, since 4.4.8 we add 
> > the required openstack (victoria) and ceph repos automatically
> >
> > On Tue, Sep 14, 2021 at 8:18 AM Tommy Sway  wrote:
> > >
> > > Thank you very much!
> > >
> > > I read the documentation and found out that you are one of the authors of 
> > > this feature! I guess I asked the right person.
> > >
> > > After installed the CinderLib as you mentioned in the second link, do I 
> > > still need to run engine setup and integrate CinderLib to use Managed 
> > > Block ?
> > >
> > >
> > >
> > >
> > >
> > > [root@olvmm ~]#  engine-setup --reconfigure-optional-components
> > >
> > > [ INFO  ] Stage: Initializing
> > >
> > > [ INFO  ] Stage: Environment setup
> > >
> > >   Configuration files:
> > > ['/etc/ovirt-engine-setup.conf.d/10-packaging-jboss.conf',
> > > '/etc/ovirt-engine-setup.conf.d/10-packaging.conf',
> > > '/etc/ovirt-engine-setup.conf.d/20-setup-ovirt-post.conf']
> > >
> > >   Log file:
> > > /var/log/ovirt-engine/setup/ovirt-engine-setup-20210914130015-1qjh
> > > wx
> > > .l
> > > og
> > >
> > >   Version: otopi-1.8.4 (otopi-1.8.4-1.el7)
> > >
> > > [ INFO  ] Stage: Environment packages setup
> > >
> > > [ INFO  ] Stage: Programs detection
> > >
> > > [ INFO  ] Stage: Environment setup (late)
> > >
> > > [ INFO  ] Stage: Environment customization
> > >
> > >
> > >
> > >  --== PRODUCT OPTIONS ==--
> > >
> > >
> > >
> > >   Set up Cinderlib integration
> > >
> > >   (Currently in tech preview)
> > >
> > >   (Yes, No) [No]: Yes
> > >
> > > [ INFO  ] ovirt-provider-ovn already installed, skipping.
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > From: Benny Zlotnik 
> > > Sent: Monday, September 13, 2021 9:20 PM
> > > To: Tommy Sway 
> > > Cc: users 
> > > Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
> > >
> > >
> > >
> > > cinderlib (Managed Block Storage) does not use openstack at all, 
> > > we have an example of how to add ceph in the feature page[1]
> > >
> > > and docs have instructions on how to set it up[2]
> > >
> > >
> > >
> > >
> > >
> > > [1]
> > > https://www.ovirt.org/develop/release-management/features/storage/
> > > ci
> > > nd
> > > erlib-integration.html
> > >
> > > [2]
> > > https://www.ovirt.org/documentation/installing_ovirt_as_a_standalo
> > > ne _m anager_with_local_databases/#Set_up_Cinderlib
> > >
> > >
> > >
> > > On Mon, Sep 13, 2021 at 2:43 PM Tommy Sway  wrote:
> > >
> > > You mean to configure ceph in Cinder pages must be connected to real 
> > > openstack?
> > >
> > > Can ceph be connected to a Managed Block page by simply linking to 
> > > cenderlib files without accessing the actual openstack?
> > >
> > >
> > >
> > > I am very interested in this section, can you send some related guide 
> > > documents?
> > >
> > > Thank you very much!
> > >
> > >
> > >
> > >
> > >
> > >
> 

[ovirt-users] Re: what kind of managed block can oVirt manage ?

2021-09-14 Thread Benny Zlotnik
On Tue, Sep 14, 2021 at 2:11 PM Tommy Sway  wrote:
>
> Do you mean that I don't need to manually add cider related repo in the new 
> version, the engine-setup process will automatically add cinder related repo 
> and install the package?
it will add the repo but will not install the package as we had to
revert this for now
> All I need to do is select CinderLib option during Engine setup?
in 4.3 you also need to enable:
$ engine-config -s ManagedBlockDomainSupported=true
> Then I can add Managed Block Domains in the admin interface?
after enabling, yes
___
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/5AO77GRXOBKFWYGMB7LVJMLONYRUKB57/


[ovirt-users] Re: what kind of managed block can oVirt manage ?

2021-09-14 Thread Benny Zlotnik
No, the difference is that we setup the required repos (we also
installed the dependencies, but we had to revert this for now). The
setup of a Managed Block Storage Domain remains the same

On Tue, Sep 14, 2021 at 1:49 PM Tommy Sway  wrote:
>
> Do you mean that in the new version, I only need to configure CINDERLib when 
> running Ovirt-Engine, and then I can connect to Ceph server directly in the 
> admin interface?
>
>
>
>
>
>
>
>
> -Original Message-
> From: users-boun...@ovirt.org  On Behalf Of Benny 
> Zlotnik
> Sent: Tuesday, September 14, 2021 4:56 PM
> To: Tommy Sway 
> Cc: users 
> Subject: [ovirt-users] Re: what kind of managed block can oVirt manage ?
>
> I see, if you use 4.3 you will have to add the repos manually on the 
> ovirt-engine node and vdsm hosts If you did not enable cinderlib in 
> engine-setup previously you have to do that, yes
>
> On Tue, Sep 14, 2021 at 11:43 AM Tommy Sway  wrote:
> >
> > But my system version is 4.3, so how can I activate it?
> > Do I should install as documented before running engine- Setup?
> > It seems that CiderLib is also given a database to create while running 
> > engine-setup,so I guess the setup-config maybe also important.
> >
> >
> >
> >
> >
> > -Original Message-
> > From: users-boun...@ovirt.org  On Behalf Of
> > Benny Zlotnik
> > Sent: Tuesday, September 14, 2021 4:09 PM
> > To: Tommy Sway 
> > Cc: users 
> > Subject: [ovirt-users] Re: what kind of managed block can oVirt manage ?
> >
> > If it's already enabled there's no need to run it again. I looked at
> > the doc again now, and it's slightly outdated, since 4.4.8 we add the
> > required openstack (victoria) and ceph repos automatically
> >
> > On Tue, Sep 14, 2021 at 8:18 AM Tommy Sway  wrote:
> > >
> > > Thank you very much!
> > >
> > > I read the documentation and found out that you are one of the authors of 
> > > this feature! I guess I asked the right person.
> > >
> > > After installed the CinderLib as you mentioned in the second link, do I 
> > > still need to run engine setup and integrate CinderLib to use Managed 
> > > Block ?
> > >
> > >
> > >
> > >
> > >
> > > [root@olvmm ~]#  engine-setup --reconfigure-optional-components
> > >
> > > [ INFO  ] Stage: Initializing
> > >
> > > [ INFO  ] Stage: Environment setup
> > >
> > >   Configuration files:
> > > ['/etc/ovirt-engine-setup.conf.d/10-packaging-jboss.conf',
> > > '/etc/ovirt-engine-setup.conf.d/10-packaging.conf',
> > > '/etc/ovirt-engine-setup.conf.d/20-setup-ovirt-post.conf']
> > >
> > >   Log file:
> > > /var/log/ovirt-engine/setup/ovirt-engine-setup-20210914130015-1qjhwx
> > > .l
> > > og
> > >
> > >   Version: otopi-1.8.4 (otopi-1.8.4-1.el7)
> > >
> > > [ INFO  ] Stage: Environment packages setup
> > >
> > > [ INFO  ] Stage: Programs detection
> > >
> > > [ INFO  ] Stage: Environment setup (late)
> > >
> > > [ INFO  ] Stage: Environment customization
> > >
> > >
> > >
> > >  --== PRODUCT OPTIONS ==--
> > >
> > >
> > >
> > >   Set up Cinderlib integration
> > >
> > >   (Currently in tech preview)
> > >
> > >   (Yes, No) [No]: Yes
> > >
> > > [ INFO  ] ovirt-provider-ovn already installed, skipping.
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > From: Benny Zlotnik 
> > > Sent: Monday, September 13, 2021 9:20 PM
> > > To: Tommy Sway 
> > > Cc: users 
> > > Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
> > >
> > >
> > >
> > > cinderlib (Managed Block Storage) does not use openstack at all, we
> > > have an example of how to add ceph in the feature page[1]
> > >
> > > and docs have instructions on how to set it up[2]
> > >
> > >
> > >
> > >
> > >
> > > [1]
> > > https://www.ovirt.org/develop/release-management/features/storage/ci
> > > nd
> > > erlib-integration.html
> > >
> > > [2]
> > > https://www.ovirt.org/documentation/installing_ovirt_as_a_standalone
> > > _m anager_with_local_databases/#Set_up_Cinderlib
> > >
> > >
> > >
> > > On Mon, Sep 13, 2021 at 2:43 PM Tommy Sway  wrote:
> > >
> > > You mean to configure ceph in Cinder pages must be connected to real 
> > > openstack?
> > >
> > > Can ceph be connected to a Managed Block page by simply linking to 
> > > cenderlib files without accessing the actual openstack?
> > >
> > >
> > >
> > > I am very interested in this section, can you send some related guide 
> > > documents?
> > >
> > > Thank you very much!
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > From: Benny Zlotnik 
> > > Sent: Monday, September 13, 2021 7:27 PM
> > > To: Tommy Sway 
> > > Cc: users 
> > > Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
> > >
> > >
> > >
> > > cinder uses an actual openstack environment setup with cinder,
> > > cinderlib does not require it
> > >
> > >
> > >
> > > On Mon, Sep 13, 2021 at 2:17 PM Tommy Sway  wrote:
> > >
> > >
> > >
> > > What's the difference between cender page and Managed Block page ?
> > >
> > > If  have to 

[ovirt-users] Re: what kind of managed block can oVirt manage ?

2021-09-14 Thread Tommy Sway
Do you mean that in the new version, I only need to configure CINDERLib when 
running Ovirt-Engine, and then I can connect to Ceph server directly in the 
admin interface?








-Original Message-
From: users-boun...@ovirt.org  On Behalf Of Benny 
Zlotnik
Sent: Tuesday, September 14, 2021 4:56 PM
To: Tommy Sway 
Cc: users 
Subject: [ovirt-users] Re: what kind of managed block can oVirt manage ?

I see, if you use 4.3 you will have to add the repos manually on the 
ovirt-engine node and vdsm hosts If you did not enable cinderlib in 
engine-setup previously you have to do that, yes

On Tue, Sep 14, 2021 at 11:43 AM Tommy Sway  wrote:
>
> But my system version is 4.3, so how can I activate it?
> Do I should install as documented before running engine- Setup?
> It seems that CiderLib is also given a database to create while running 
> engine-setup,so I guess the setup-config maybe also important.
>
>
>
>
>
> -Original Message-
> From: users-boun...@ovirt.org  On Behalf Of 
> Benny Zlotnik
> Sent: Tuesday, September 14, 2021 4:09 PM
> To: Tommy Sway 
> Cc: users 
> Subject: [ovirt-users] Re: what kind of managed block can oVirt manage ?
>
> If it's already enabled there's no need to run it again. I looked at 
> the doc again now, and it's slightly outdated, since 4.4.8 we add the 
> required openstack (victoria) and ceph repos automatically
>
> On Tue, Sep 14, 2021 at 8:18 AM Tommy Sway  wrote:
> >
> > Thank you very much!
> >
> > I read the documentation and found out that you are one of the authors of 
> > this feature! I guess I asked the right person.
> >
> > After installed the CinderLib as you mentioned in the second link, do I 
> > still need to run engine setup and integrate CinderLib to use Managed Block 
> > ?
> >
> >
> >
> >
> >
> > [root@olvmm ~]#  engine-setup --reconfigure-optional-components
> >
> > [ INFO  ] Stage: Initializing
> >
> > [ INFO  ] Stage: Environment setup
> >
> >   Configuration files:
> > ['/etc/ovirt-engine-setup.conf.d/10-packaging-jboss.conf',
> > '/etc/ovirt-engine-setup.conf.d/10-packaging.conf',
> > '/etc/ovirt-engine-setup.conf.d/20-setup-ovirt-post.conf']
> >
> >   Log file:
> > /var/log/ovirt-engine/setup/ovirt-engine-setup-20210914130015-1qjhwx
> > .l
> > og
> >
> >   Version: otopi-1.8.4 (otopi-1.8.4-1.el7)
> >
> > [ INFO  ] Stage: Environment packages setup
> >
> > [ INFO  ] Stage: Programs detection
> >
> > [ INFO  ] Stage: Environment setup (late)
> >
> > [ INFO  ] Stage: Environment customization
> >
> >
> >
> >  --== PRODUCT OPTIONS ==--
> >
> >
> >
> >   Set up Cinderlib integration
> >
> >   (Currently in tech preview)
> >
> >   (Yes, No) [No]: Yes
> >
> > [ INFO  ] ovirt-provider-ovn already installed, skipping.
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > From: Benny Zlotnik 
> > Sent: Monday, September 13, 2021 9:20 PM
> > To: Tommy Sway 
> > Cc: users 
> > Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
> >
> >
> >
> > cinderlib (Managed Block Storage) does not use openstack at all, we 
> > have an example of how to add ceph in the feature page[1]
> >
> > and docs have instructions on how to set it up[2]
> >
> >
> >
> >
> >
> > [1]
> > https://www.ovirt.org/develop/release-management/features/storage/ci
> > nd
> > erlib-integration.html
> >
> > [2]
> > https://www.ovirt.org/documentation/installing_ovirt_as_a_standalone
> > _m anager_with_local_databases/#Set_up_Cinderlib
> >
> >
> >
> > On Mon, Sep 13, 2021 at 2:43 PM Tommy Sway  wrote:
> >
> > You mean to configure ceph in Cinder pages must be connected to real 
> > openstack?
> >
> > Can ceph be connected to a Managed Block page by simply linking to 
> > cenderlib files without accessing the actual openstack?
> >
> >
> >
> > I am very interested in this section, can you send some related guide 
> > documents?
> >
> > Thank you very much!
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > From: Benny Zlotnik 
> > Sent: Monday, September 13, 2021 7:27 PM
> > To: Tommy Sway 
> > Cc: users 
> > Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
> >
> >
> >
> > cinder uses an actual openstack environment setup with cinder, 
> > cinderlib does not require it
> >
> >
> >
> > On Mon, Sep 13, 2021 at 2:17 PM Tommy Sway  wrote:
> >
> >
> >
> > What's the difference between cender page and Managed Block page ?
> >
> > If  have to connect them through cinderlib,why not put them all 
> > under cinder page ?
> >
> >
> >
> >
> >
> >
> >
> > From: Benny Zlotnik 
> > Sent: Monday, September 13, 2021 6:14 PM
> > To: Tommy Sway 
> > Cc: users 
> > Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
> >
> >
> >
> > yes, we support ceph via cinderlib, so in theory any vendor with a 
> > storage driver for cinder can work, but we only test ceph
> >
> >
> >
> > On Mon, Sep 13, 2021 at 1:06 PM Tommy Sway  wrote:
> >
> > On the create disk page, there is option to create disk that is from 
> > managed 

[ovirt-users] Re: virtio-win driver licensing

2021-09-14 Thread simon
Thanks Yash/Nir,

I posted a follow up before I saw your response. I'll wait for your follow up.

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/6C3ZR7KHUS246ADINARTBF6K6OIAGFCG/


[ovirt-users] Re: what kind of managed block can oVirt manage ?

2021-09-14 Thread Benny Zlotnik
I see, if you use 4.3 you will have to add the repos manually on the
ovirt-engine node and vdsm hosts
If you did not enable cinderlib in engine-setup previously you have to
do that, yes

On Tue, Sep 14, 2021 at 11:43 AM Tommy Sway  wrote:
>
> But my system version is 4.3, so how can I activate it?
> Do I should install as documented before running engine- Setup?
> It seems that CiderLib is also given a database to create while running 
> engine-setup,so I guess the setup-config maybe also important.
>
>
>
>
>
> -Original Message-
> From: users-boun...@ovirt.org  On Behalf Of Benny 
> Zlotnik
> Sent: Tuesday, September 14, 2021 4:09 PM
> To: Tommy Sway 
> Cc: users 
> Subject: [ovirt-users] Re: what kind of managed block can oVirt manage ?
>
> If it's already enabled there's no need to run it again. I looked at the doc 
> again now, and it's slightly outdated, since 4.4.8 we add the required 
> openstack (victoria) and ceph repos automatically
>
> On Tue, Sep 14, 2021 at 8:18 AM Tommy Sway  wrote:
> >
> > Thank you very much!
> >
> > I read the documentation and found out that you are one of the authors of 
> > this feature! I guess I asked the right person.
> >
> > After installed the CinderLib as you mentioned in the second link, do I 
> > still need to run engine setup and integrate CinderLib to use Managed Block 
> > ?
> >
> >
> >
> >
> >
> > [root@olvmm ~]#  engine-setup --reconfigure-optional-components
> >
> > [ INFO  ] Stage: Initializing
> >
> > [ INFO  ] Stage: Environment setup
> >
> >   Configuration files:
> > ['/etc/ovirt-engine-setup.conf.d/10-packaging-jboss.conf',
> > '/etc/ovirt-engine-setup.conf.d/10-packaging.conf',
> > '/etc/ovirt-engine-setup.conf.d/20-setup-ovirt-post.conf']
> >
> >   Log file:
> > /var/log/ovirt-engine/setup/ovirt-engine-setup-20210914130015-1qjhwx.l
> > og
> >
> >   Version: otopi-1.8.4 (otopi-1.8.4-1.el7)
> >
> > [ INFO  ] Stage: Environment packages setup
> >
> > [ INFO  ] Stage: Programs detection
> >
> > [ INFO  ] Stage: Environment setup (late)
> >
> > [ INFO  ] Stage: Environment customization
> >
> >
> >
> >  --== PRODUCT OPTIONS ==--
> >
> >
> >
> >   Set up Cinderlib integration
> >
> >   (Currently in tech preview)
> >
> >   (Yes, No) [No]: Yes
> >
> > [ INFO  ] ovirt-provider-ovn already installed, skipping.
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > From: Benny Zlotnik 
> > Sent: Monday, September 13, 2021 9:20 PM
> > To: Tommy Sway 
> > Cc: users 
> > Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
> >
> >
> >
> > cinderlib (Managed Block Storage) does not use openstack at all, we
> > have an example of how to add ceph in the feature page[1]
> >
> > and docs have instructions on how to set it up[2]
> >
> >
> >
> >
> >
> > [1]
> > https://www.ovirt.org/develop/release-management/features/storage/cind
> > erlib-integration.html
> >
> > [2]
> > https://www.ovirt.org/documentation/installing_ovirt_as_a_standalone_m
> > anager_with_local_databases/#Set_up_Cinderlib
> >
> >
> >
> > On Mon, Sep 13, 2021 at 2:43 PM Tommy Sway  wrote:
> >
> > You mean to configure ceph in Cinder pages must be connected to real 
> > openstack?
> >
> > Can ceph be connected to a Managed Block page by simply linking to 
> > cenderlib files without accessing the actual openstack?
> >
> >
> >
> > I am very interested in this section, can you send some related guide 
> > documents?
> >
> > Thank you very much!
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > From: Benny Zlotnik 
> > Sent: Monday, September 13, 2021 7:27 PM
> > To: Tommy Sway 
> > Cc: users 
> > Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
> >
> >
> >
> > cinder uses an actual openstack environment setup with cinder,
> > cinderlib does not require it
> >
> >
> >
> > On Mon, Sep 13, 2021 at 2:17 PM Tommy Sway  wrote:
> >
> >
> >
> > What's the difference between cender page and Managed Block page ?
> >
> > If  have to connect them through cinderlib,why not put them all under
> > cinder page ?
> >
> >
> >
> >
> >
> >
> >
> > From: Benny Zlotnik 
> > Sent: Monday, September 13, 2021 6:14 PM
> > To: Tommy Sway 
> > Cc: users 
> > Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
> >
> >
> >
> > yes, we support ceph via cinderlib, so in theory any vendor with a
> > storage driver for cinder can work, but we only test ceph
> >
> >
> >
> > On Mon, Sep 13, 2021 at 1:06 PM Tommy Sway  wrote:
> >
> > On the create disk page, there is option to create disk that is from 
> > managed block, I want wo know what’s kind of it ?  Ceph block device ?
> >
> >
> >
> > Thanks!
> >
> >
> >
> >
> >
> > ___
> > 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 

[ovirt-users] Re: what kind of managed block can oVirt manage ?

2021-09-14 Thread Tommy Sway
But my system version is 4.3, so how can I activate it?
Do I should install as documented before running engine- Setup?
It seems that CiderLib is also given a database to create while running 
engine-setup,so I guess the setup-config maybe also important.





-Original Message-
From: users-boun...@ovirt.org  On Behalf Of Benny 
Zlotnik
Sent: Tuesday, September 14, 2021 4:09 PM
To: Tommy Sway 
Cc: users 
Subject: [ovirt-users] Re: what kind of managed block can oVirt manage ?

If it's already enabled there's no need to run it again. I looked at the doc 
again now, and it's slightly outdated, since 4.4.8 we add the required 
openstack (victoria) and ceph repos automatically

On Tue, Sep 14, 2021 at 8:18 AM Tommy Sway  wrote:
>
> Thank you very much!
>
> I read the documentation and found out that you are one of the authors of 
> this feature! I guess I asked the right person.
>
> After installed the CinderLib as you mentioned in the second link, do I still 
> need to run engine setup and integrate CinderLib to use Managed Block ?
>
>
>
>
>
> [root@olvmm ~]#  engine-setup --reconfigure-optional-components
>
> [ INFO  ] Stage: Initializing
>
> [ INFO  ] Stage: Environment setup
>
>   Configuration files: 
> ['/etc/ovirt-engine-setup.conf.d/10-packaging-jboss.conf', 
> '/etc/ovirt-engine-setup.conf.d/10-packaging.conf', 
> '/etc/ovirt-engine-setup.conf.d/20-setup-ovirt-post.conf']
>
>   Log file: 
> /var/log/ovirt-engine/setup/ovirt-engine-setup-20210914130015-1qjhwx.l
> og
>
>   Version: otopi-1.8.4 (otopi-1.8.4-1.el7)
>
> [ INFO  ] Stage: Environment packages setup
>
> [ INFO  ] Stage: Programs detection
>
> [ INFO  ] Stage: Environment setup (late)
>
> [ INFO  ] Stage: Environment customization
>
>
>
>  --== PRODUCT OPTIONS ==--
>
>
>
>   Set up Cinderlib integration
>
>   (Currently in tech preview)
>
>   (Yes, No) [No]: Yes
>
> [ INFO  ] ovirt-provider-ovn already installed, skipping.
>
>
>
>
>
>
>
>
>
> From: Benny Zlotnik 
> Sent: Monday, September 13, 2021 9:20 PM
> To: Tommy Sway 
> Cc: users 
> Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
>
>
>
> cinderlib (Managed Block Storage) does not use openstack at all, we 
> have an example of how to add ceph in the feature page[1]
>
> and docs have instructions on how to set it up[2]
>
>
>
>
>
> [1] 
> https://www.ovirt.org/develop/release-management/features/storage/cind
> erlib-integration.html
>
> [2] 
> https://www.ovirt.org/documentation/installing_ovirt_as_a_standalone_m
> anager_with_local_databases/#Set_up_Cinderlib
>
>
>
> On Mon, Sep 13, 2021 at 2:43 PM Tommy Sway  wrote:
>
> You mean to configure ceph in Cinder pages must be connected to real 
> openstack?
>
> Can ceph be connected to a Managed Block page by simply linking to cenderlib 
> files without accessing the actual openstack?
>
>
>
> I am very interested in this section, can you send some related guide 
> documents?
>
> Thank you very much!
>
>
>
>
>
>
>
>
>
> From: Benny Zlotnik 
> Sent: Monday, September 13, 2021 7:27 PM
> To: Tommy Sway 
> Cc: users 
> Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
>
>
>
> cinder uses an actual openstack environment setup with cinder, 
> cinderlib does not require it
>
>
>
> On Mon, Sep 13, 2021 at 2:17 PM Tommy Sway  wrote:
>
>
>
> What's the difference between cender page and Managed Block page ?
>
> If  have to connect them through cinderlib,why not put them all under 
> cinder page ?
>
>
>
>
>
>
>
> From: Benny Zlotnik 
> Sent: Monday, September 13, 2021 6:14 PM
> To: Tommy Sway 
> Cc: users 
> Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
>
>
>
> yes, we support ceph via cinderlib, so in theory any vendor with a 
> storage driver for cinder can work, but we only test ceph
>
>
>
> On Mon, Sep 13, 2021 at 1:06 PM Tommy Sway  wrote:
>
> On the create disk page, there is option to create disk that is from managed 
> block, I want wo know what’s kind of it ?  Ceph block device ?
>
>
>
> Thanks!
>
>
>
>
>
> ___
> 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/RSQSTL5S
> R5TE6DKAJZLECVI52OW6ZLXZ/
___
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/W4SI72QYXNBL5WMDKTVWFGQ53IOCMFEC/
___
Users mailing list -- users@ovirt.org
To unsubscribe send an 

[ovirt-users] Re: what kind of managed block can oVirt manage ?

2021-09-14 Thread Benny Zlotnik
If it's already enabled there's no need to run it again. I looked at
the doc again now, and it's slightly outdated, since 4.4.8 we add the
required openstack (victoria) and ceph repos automatically

On Tue, Sep 14, 2021 at 8:18 AM Tommy Sway  wrote:
>
> Thank you very much!
>
> I read the documentation and found out that you are one of the authors of 
> this feature! I guess I asked the right person.
>
> After installed the CinderLib as you mentioned in the second link, do I still 
> need to run engine setup and integrate CinderLib to use Managed Block ?
>
>
>
>
>
> [root@olvmm ~]#  engine-setup --reconfigure-optional-components
>
> [ INFO  ] Stage: Initializing
>
> [ INFO  ] Stage: Environment setup
>
>   Configuration files: 
> ['/etc/ovirt-engine-setup.conf.d/10-packaging-jboss.conf', 
> '/etc/ovirt-engine-setup.conf.d/10-packaging.conf', 
> '/etc/ovirt-engine-setup.conf.d/20-setup-ovirt-post.conf']
>
>   Log file: 
> /var/log/ovirt-engine/setup/ovirt-engine-setup-20210914130015-1qjhwx.log
>
>   Version: otopi-1.8.4 (otopi-1.8.4-1.el7)
>
> [ INFO  ] Stage: Environment packages setup
>
> [ INFO  ] Stage: Programs detection
>
> [ INFO  ] Stage: Environment setup (late)
>
> [ INFO  ] Stage: Environment customization
>
>
>
>  --== PRODUCT OPTIONS ==--
>
>
>
>   Set up Cinderlib integration
>
>   (Currently in tech preview)
>
>   (Yes, No) [No]: Yes
>
> [ INFO  ] ovirt-provider-ovn already installed, skipping.
>
>
>
>
>
>
>
>
>
> From: Benny Zlotnik 
> Sent: Monday, September 13, 2021 9:20 PM
> To: Tommy Sway 
> Cc: users 
> Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
>
>
>
> cinderlib (Managed Block Storage) does not use openstack at all, we have an 
> example of how to add ceph in the feature page[1]
>
> and docs have instructions on how to set it up[2]
>
>
>
>
>
> [1] 
> https://www.ovirt.org/develop/release-management/features/storage/cinderlib-integration.html
>
> [2] 
> https://www.ovirt.org/documentation/installing_ovirt_as_a_standalone_manager_with_local_databases/#Set_up_Cinderlib
>
>
>
> On Mon, Sep 13, 2021 at 2:43 PM Tommy Sway  wrote:
>
> You mean to configure ceph in Cinder pages must be connected to real 
> openstack?
>
> Can ceph be connected to a Managed Block page by simply linking to cenderlib 
> files without accessing the actual openstack?
>
>
>
> I am very interested in this section, can you send some related guide 
> documents?
>
> Thank you very much!
>
>
>
>
>
>
>
>
>
> From: Benny Zlotnik 
> Sent: Monday, September 13, 2021 7:27 PM
> To: Tommy Sway 
> Cc: users 
> Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
>
>
>
> cinder uses an actual openstack environment setup with cinder, cinderlib does 
> not require it
>
>
>
> On Mon, Sep 13, 2021 at 2:17 PM Tommy Sway  wrote:
>
>
>
> What's the difference between cender page and Managed Block page ?
>
> If  have to connect them through cinderlib,why not put them all under cinder 
> page ?
>
>
>
>
>
>
>
> From: Benny Zlotnik 
> Sent: Monday, September 13, 2021 6:14 PM
> To: Tommy Sway 
> Cc: users 
> Subject: Re: [ovirt-users] what kind of managed block can oVirt manage ?
>
>
>
> yes, we support ceph via cinderlib, so in theory any vendor with a storage 
> driver for cinder can work, but we only test ceph
>
>
>
> On Mon, Sep 13, 2021 at 1:06 PM Tommy Sway  wrote:
>
> On the create disk page, there is option to create disk that is from managed 
> block, I want wo know what’s kind of it ?  Ceph block device ?
>
>
>
> Thanks!
>
>
>
>
>
> ___
> 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/RSQSTL5SR5TE6DKAJZLECVI52OW6ZLXZ/
___
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/W4SI72QYXNBL5WMDKTVWFGQ53IOCMFEC/


[ovirt-users] Re: oVirt 4.3 DWH with Grafana

2021-09-14 Thread Tommy Sway
The oVirt version I'm using is 4.3, and I get an error when I import JSON.

pq: relation"v4_4_latest_configuration_datacenters" does not exist.

 

 

 

From: users-boun...@ovirt.org  On Behalf Of Michal 
Gutowski
Sent: Wednesday, November 25, 2020 12:26 AM
To: Vrgotic, Marko 
Cc: users@ovirt.org
Subject: [ovirt-users] Re: oVirt 4.3 DWH with Grafana

 

Hi Marko,





I've tested this myself as I like playing with various Grafana use-cases and 
following steps allow you to set up Grafana Monitoring for your oVirt 4.3 
environment and re-use all Grafana Dashboards from latest oVirt 4.4 on a 
previous release.

 

1. Allowing Grafana to connect to oVirt DWH database (Data Warehouse)

 

Login to the oVirt engine 4.3 and create a user "grafana" with password 
"grafana" that will get a read-only access to the ovirt_engine_history database 
and will be able to use public schema

 

# su - postgres -c 'scl enable rh-postgresql10 bash'

# psql -U postgres -c "CREATE ROLE grafana WITH LOGIN ENCRYPTED PASSWORD 
'grafana';" -d ovirt_engine_history

# psql -U postgres -c "GRANT CONNECT ON DATABASE ovirt_engine_history TO 
grafana;"

# psql -U postgres -c "GRANT USAGE ON SCHEMA public TO grafana;" 
ovirt_engine_history

 

Generate the rest of the permissions that will be granted to the newly created 
user and save them to a file:

 

# psql -U postgres -c "SELECT 'GRANT SELECT ON ' || relname || ' TO grafana;' 
FROM pg_class JOIN pg_namespace ON pg_namespace.oid = pg_class.relnamespace 
WHERE nspname = 'public' AND relkind IN ('r', 'v');" --pset=tuples_only=on  
ovirt_engine_history > grant.sql

 

Use the file you created in the previous step to grant permissions to the newly 
created user:

# psql -U postgres -f grant.sql ovirt_engine_history

 

Remove the file you used to grant permissions:

# rm grant.sql

 

Exit the postgres user shell by pressing Ctrl+d

 

Add the following lines for the newly created user to 
/var/opt/rh/rh-postgresql10/lib/pgsql/data/pg_hba.conf preceding the line 
beginning local all all

 

hostovirt_engine_history grafana 0.0.0.0/0   md5

hostovirt_engine_history grafana ::0/0   md5

 

Reload postgres service

# systemctl reload rh-postgresql10-postgresql

 

2. Installing Grafana

 

You can install Grafana directly on the oVirt Engine machine (this is how it's 
done in oVirt 4.4) or on a separate machine. Following steps shows how you can 
install Grafana on a Oracle Linux 7 server. Note: Oracle provides Grafana in 
the OLCNE yum repository - you only need to install the repository definition 
package to pickup Grafana and it's dependencies.

 

# yum install oraclelinux-release-el7

# yum install oracle-olcne-release-el7

# yum-config-manager --enable ol7_optional_latest ol7_olcne11

# yum install grafana

# systemctl enable --now grafana-server

 

3. Adding oVirt DWH database as Data Source in Grafana

 

Login to Grafana (default port 3000) and navigate to Configuration -> 
DataSources and click on Add Data Source button.

 

Select PostgreSQL source and use the following settings (adjust the Host IP 
address to match your oVirt Engine IP but do not change the Name):

Name: oVirt DWH

Host: your-engine-ip-address:5432

user: grafana

pass: grafana

SSL mode: disable

 

4. Importing Dashboards from oVirt 4.4

 

Download Grafana Dashboards from oVirt 4.4 repository: 
https://github.com/oVirt/ovirt-dwh/tree/master/packaging/conf/grafana-dashboards

 

You can now import them in Grafana by navigating to Create -> Import and 
clicking on Upload .json file or by simply pasting JSON content.

 

I've tested this on my OLVM/oVirt 4.3 and works perfectly well.

 

Have fun!

Michal





Michał Gutowski

Principal Solutions Engineer, EMEA 

+48 665 222 979

 

Oracle Open Cloud Infrastructure Software - Linux & Virtualization





On 24 Nov 2020, at 11:53, Vrgotic, Marko mailto:m.vrgo...@activevideo.com> > wrote:

 

Dear oVirt folks,

 

Thank you all for suggestions.

 

I will give it a go and see how far I get.

 

-

kind regards/met vriendelijke groeten

 

Marko Vrgotic
Sr. System Engineer @ System Administration


ActiveVideo

o: +31 (35) 6774131

m: +31 (65) 5734174

e:   m.vrgo...@activevideo.com
w:  

 www.activevideo.com

 

ActiveVideo Networks BV. Mediacentrum 3745 Joop van den Endeplein 1.1217 WJ 
Hilversum, The Netherlands. The information contained in this message may be 
legally privileged and confidential. It is intended to be read only by the 
individual or entity to whom it is addressed or by their designee. If the 
reader of this message is not the intended recipient, you are on notice that 
any distribution of this message, in any form, is strictly prohibited.  If you 
have received this message in error, please immediately notify the sender 
and/or 

[ovirt-users] Re: oVirt Monitoring Alerts via Grafana

2021-09-14 Thread Tommy Sway
I see. Thank you.

 

 

 

 

From: ybard...@redhat.com  On Behalf Of Yedidyah Bar David
Sent: Tuesday, September 14, 2021 2:20 PM
To: Tommy Sway 
Cc: Aviv Litman ; users ; Shirly Radco 

Subject: Re: [ovirt-users] Re: oVirt Monitoring Alerts via Grafana

 

On Tue, Sep 14, 2021 at 9:12 AM Tommy Sway mailto:sz_cui...@163.com> > wrote:

Thanks for your article!

My Ovirt system does not show a monitoring portal. How do I integrate Grafana 
into my Ovirt portal?

The configuration doesn't seem to have the Grafana option even after the 
reinstallation:

 

[root@olvmm ~]# engine-setup --reconfigure-optional-components

[ INFO  ] Stage: Initializing

[ INFO  ] Stage: Environment setup

  Configuration files: 
['/etc/ovirt-engine-setup.conf.d/10-packaging-jboss.conf', 
'/etc/ovirt-engine-setup.conf.d/10-packaging.conf', 
'/etc/ovirt-engine-setup.conf.d/20-setup-ovirt-post.conf']

  Log file: 
/var/log/ovirt-engine/setup/ovirt-engine-setup-20210914135829-rigduk.log

  Version: otopi-1.8.4 (otopi-1.8.4-1.el7)

 

It seems like you use 4.3, based on otopi version. Grafana integration was 
added in 4.4.

 

Best regards,

-- 

Didi

___
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/HQBUZF2WTHKTCJDG5EWDUXFRTKT36FRN/


[ovirt-users] Thank you for restreaming the oVirt Conf to China!

2021-09-14 Thread Janos Bonic
Hey folks,

I'm hoping whoever mentioned in the chat that they are rebroadcasting the
conference to China is in this mailing list. I owe you a huge thank you! I
tried to figure out how to stream to China, but I failed.

If you are interested in helping us set up a direct stream or publish to a
platform accessible in China next year, please contact me privately so we
can coordinate.

Janos
___
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/OS63TYVD66NMCVQP7WZIOLCPAV3CU6Z5/


[ovirt-users] Re: oVirt Monitoring Alerts via Grafana

2021-09-14 Thread Yedidyah Bar David
On Tue, Sep 14, 2021 at 9:12 AM Tommy Sway  wrote:

> Thanks for your article!
>
> My Ovirt system does not show a monitoring portal. How do I integrate
> Grafana into my Ovirt portal?
>
> The configuration doesn't seem to have the Grafana option even after the
> reinstallation:
>
>
>
> [root@olvmm ~]# engine-setup --reconfigure-optional-components
>
> [ INFO  ] Stage: Initializing
>
> [ INFO  ] Stage: Environment setup
>
>   Configuration files:
> ['/etc/ovirt-engine-setup.conf.d/10-packaging-jboss.conf',
> '/etc/ovirt-engine-setup.conf.d/10-packaging.conf',
> '/etc/ovirt-engine-setup.conf.d/20-setup-ovirt-post.conf']
>
>   Log file:
> /var/log/ovirt-engine/setup/ovirt-engine-setup-20210914135829-rigduk.log
>
>   Version: otopi-1.8.4 (otopi-1.8.4-1.el7)
>

It seems like you use 4.3, based on otopi version. Grafana integration was
added in 4.4.

Best regards,
-- 
Didi
___
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/BLLTVK7PAQOCWYVTBECEH63JTDIGFF3R/


[ovirt-users] Re: oVirt Monitoring Alerts via Grafana

2021-09-14 Thread Tommy Sway
Thanks for your article!

My Ovirt system does not show a monitoring portal. How do I integrate Grafana 
into my Ovirt portal?

The configuration doesn't seem to have the Grafana option even after the 
reinstallation:

 

[root@olvmm ~]# engine-setup --reconfigure-optional-components

[ INFO  ] Stage: Initializing

[ INFO  ] Stage: Environment setup

  Configuration files: 
['/etc/ovirt-engine-setup.conf.d/10-packaging-jboss.conf', 
'/etc/ovirt-engine-setup.conf.d/10-packaging.conf', 
'/etc/ovirt-engine-setup.conf.d/20-setup-ovirt-post.conf']

  Log file: 
/var/log/ovirt-engine/setup/ovirt-engine-setup-20210914135829-rigduk.log

  Version: otopi-1.8.4 (otopi-1.8.4-1.el7)

[ INFO  ] Stage: Environment packages setup

[ INFO  ] Stage: Programs detection

[ INFO  ] Stage: Environment setup (late)

[ INFO  ] Stage: Environment customization

 

  --== PRODUCT OPTIONS ==--

 

[ INFO  ] ovirt-provider-ovn already installed, skipping.

 

  --== PACKAGES ==--

 

[ INFO  ] Checking for product updates...

[ INFO  ] No product updates found

 

  --== NETWORK CONFIGURATION ==--

 

[WARNING] Host name olvmm has no domain suffix

[WARNING] Failed to resolve olvmm using DNS, it can be resolved only locally

  Setup can automatically configure the firewall on this system.

  Note: automatic configuration of the firewall may overwrite current 
settings.

  NOTICE: iptables is deprecated and will be removed in future releases

  Do you want Setup to configure the firewall? (Yes, No) [Yes]:

[ INFO  ] firewalld will be configured as firewall manager.

[WARNING] Host name olvmm has no domain suffix

[WARNING] Host name olvmm has no domain suffix

[WARNING] Host name olvmm has no domain suffix

 

  --== DATABASE CONFIGURATION ==--

 

  The detected DWH database size is 199 MB.

  Setup can backup the existing database. The time and space required 
for the database backup depend on its size. This process takes time, and in 
some cases (for instance, when the size is few GBs) may take several hours to 
complete.

  If you choose to not back up the database, and Setup later fails for 
some reason, it will not be able to restore the database and all DWH data will 
be lost.

  Would you like to backup the existing database before upgrading it? 
(Yes, No) [Yes]: No

[WARNING] Are you sure you do not want to backup the DWH database?

  A positive reply makes sense only if you do not need the data in DWH, 
or have some other, external means to restore it to a working state.

  Are you sure you do not want to backup the DWH database?(Yes, No) 
[No]: No

  The DWH Database will be backed up prior to upgrade.

  Perform full vacuum on the oVirt engine history

  database ovirt_engine_history@localhost?

  This operation may take a while depending on this setup health and the

  configuration of the db vacuum process.

  See https://www.postgresql.org/docs/10/sql-vacuum.html

  (Yes, No) [No]:

 

  --== OVIRT ENGINE CONFIGURATION ==--

 

  Perform full vacuum on the engine database engine@localhost?

  This operation may take a while depending on this setup health and the

  configuration of the db vacuum process.

  See https://www.postgresql.org/docs/10/sql-vacuum.html

  (Yes, No) [No]:

 

  --== STORAGE CONFIGURATION ==--

 

 

  --== PKI CONFIGURATION ==--

 

 

  --== APACHE CONFIGURATION ==--

 

 

  --== SYSTEM CONFIGURATION ==--

 

 

  --== MISC CONFIGURATION ==--

 

 

  --== END OF CONFIGURATION ==--

 

[ INFO  ] Stage: Setup validation

  During execution engine service will be stopped (OK, Cancel) [OK]:

[WARNING] Less than 16384MB of memory is available

[ INFO  ] Cleaning stale zombie tasks and commands

 

  --== CONFIGURATION PREVIEW ==--

 

  Default SAN wipe after delete   : False

  Firewall manager: firewalld

  Update Firewall : True

  Host FQDN   : olvmm

  CinderLib database secured connection   : False

  CinderLib database user name: ovirt_cinderlib

  CinderLib database name : ovirt_cinderlib

  CinderLib database host : localhost

  CinderLib database port : 5432

  CinderLib database host name validation : False

  Set up Cinderlib integration: True

  Engine database secured connection  : False

  Engine database user name   : engine

  Engine database name: engine

  Engine database host: localhost

  Engine database port: 5432