Re: [ovirt-users] oVirt Metrics

2017-07-14 Thread Ravi Shankar Nori
On Tue, Jul 11, 2017 at 6:27 AM, Yedidyah Bar David wrote: > On Tue, Jul 11, 2017 at 1:13 PM, Arsène Gschwind > wrote: > > Hi all, > > > > I'm trying to setup oVirt metrics as described at > > https://www.ovirt.org/develop/release-management/features/

[ovirt-users] Re: Unable to login to the WEB UI Unexpected character ('<' (code 60))....

2018-08-06 Thread Ravi Shankar Nori
I think the problem was the host name with a "." in it "RH7.1" On Mon, Aug 6, 2018 at 3:27 PM, wrote: > It works for me ! > > So, you need a hostname with a domain > Update your /etc/hosts file on the server and the clients > (C:\Windows\System32\drivers\etc\Hosts for Windows) > > Thanks a lot

[ovirt-users] Re: Unable to login to the WEB UI Unexpected character ('<' (code 60))....

2018-08-06 Thread Ravi Shankar Nori
Are you able to login from the browser on same host you are running engine? Please check if the FQDN os the engine host is resolvable on the engine host and from the host you are trying to access the Web Admin Also do you have any other setup on Apache that is interfering with Apache redirecting

[ovirt-users] Re: Unable to login to the WEB UI Unexpected character ('<' (code 60))....

2018-08-06 Thread Ravi Shankar Nori
Try the following 1. systemctl stop ovirt-engine 2. set hostname to rh71.domain.com 3. update /etc/hosts to add rh71.domain.com 4. Run engine-rename to change name to the new hostname /usr/share/ovirt-engine/setup/bin/ovirt-engine-rename 5. systemctl start ovirt-engine Now you can try

[ovirt-users] Re: Unable to login to the WEB UI Unexpected character ('<' (code 60))....

2018-08-06 Thread Ravi Shankar Nori
Please share the contents of file /etc/ovirt-engine/engine.conf.d/10-setup-protocols.conf and /etc/ovirt-engine/engine.conf.d/11-setup-sso.conf On Mon, Aug 6, 2018 at 2:22 PM, Klauber Lucilla wrote: > Hello, > I´ve got same error here, tried all above. > Same screen like

[ovirt-users] Re: ENGINE_SSO_AUTH_URL configuration

2018-07-05 Thread Ravi Shankar Nori
In short, it is not possible to replace engine sso service with an out of the box oauth2 or OIDC end point. We have a few custom end points that improve the performance of engine and also help with authz searches which is used to assign permissions to users/groups on engine side. On Wed, Jul 4,

[ovirt-users] Re: The user admin@internal is not authorized to perform login

2018-11-26 Thread Ravi Shankar Nori
Looks like the permissions for admin@internal were removed by another admin user You can try the following 1. Get the admin user external id select external_id from users where name = 'admin' and domain = 'internal-authz' 2. Add permissions for admin user select attach_user_to_role(

[ovirt-users] Re: oVirt upgrade 4.1 to 4.2

2019-01-09 Thread Ravi Shankar Nori
You can try curl -k -X GET -u admin@internal: -H 'Accept: application/xml' https:// /ovirt-engine/api/vms?search=custom_compatibility_level%3D4.1 should list all the vms with custom_compatibility_level 4.1 On Mon, Jan 7, 2019 at 10:09 AM wrote: > Hello when we did a live upgrade of our VDC

[ovirt-users] Re: oVirt 4.3.1 with AD creates new user at every login

2019-03-11 Thread Ravi Shankar Nori
On Mon, Mar 11, 2019 at 4:49 AM Martin Perina wrote: > > > On Sat, Mar 9, 2019 at 10:43 AM wrote: > >> > I just did a clean install of oVirt 4.3.1 (engine and nodes). >> > >> > I setup AD authentication and gave an AD group permissions needed work >> with >> > VMs. I gave them PowerUserRole on

[ovirt-users] Re: error failed to execute stage 'misc configuration': failed to start service 'openvswitch'

2019-03-08 Thread Ravi Shankar Nori
Can you provide a few more details of your setup. Which OS and which version of oVirt you are trying to install. Thanks On Fri, Mar 8, 2019 at 9:41 AM Katia Monjes wrote: > I'm starting in the world of ovirt, so I would appreciate the help > I'm trying to install ovirt-engine and it gives me

[ovirt-users] Re: sun.security.validator

2019-02-06 Thread Ravi Shankar Nori
On Wed, Feb 6, 2019 at 11:18 AM Greg Sheremeta wrote: > Ravi, can you assist? > > Greg > > > On Tue, Feb 5, 2019 at 8:39 PM wrote: > >> Did you ever get an answer to this? I am experiencing the same issue >> after: >> >> 1) Updating the BIOS on my system to the latest one >> 2) Installing a

[ovirt-users] Re: access engine by http

2019-02-14 Thread Ravi Shankar Nori
Apache uses ajp to communicate with engine on port 8702. You can redirect from Apache with a simple RewriteCond to jboss port 8543 but certificate verification is not going to work which will cause issues with all oVirt tools. More over oVirt SSO is not going to let you access UI on port other

[ovirt-users] Re: access engine by http

2019-02-15 Thread Ravi Shankar Nori
> /ovirt-engine to 127.0.0.1:8702 , but I do not know how to redirect > https , I do not find some redirect https info. > > I fix "ProxyPassMatch ajp://127.0.0.1:8702 timeout=3600 retry=5" to > "ProxyPassMatch ajp://127.0.0.1:8543 timeout=3600 retry=5"? > > --