Discussion:
[ovirt-users] Ooops! in last step of Hyperconverged deployment
Harry O
2021-05-11 09:25:17 UTC
Permalink
Hi,

In the second engine dep run in Hyperconverged deployment I get red "Ooops!" in cockpit.
I think it fails on some networking setup.
The first oVirt Node says "Hosted Engine is up!" but the other nodes is not added to HostedEngine yet.
There is no network connectivity to the Engine outside node1, I can ssh to engine from node1 on the right IP-address.
Please tell what logs I should pull.
_______________________________________________
Users mailing list -- ***@ovirt.org
To unsubscribe send an email to users-***@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/use
Harry O
2021-05-11 21:49:40 UTC
Permalink
Thanks Strahil, I think I we found the relevent error in logs:

[ 00:03 ] Make the engine aware that the external VM is stopped
[ 00:01 ] Wait for the local bootstrap VM to be down at engine eyes
[ 00:02 ] Remove bootstrap external VM from the engine
[ 00:04 ] Remove ovirt-engine-appliance rpm
[ < 1 sec ] Include custom tasks for after setup customization
[ < 1 sec ] Include Host vars
[ FAILED ] Set Engine public key as authorized key without validating the TLS/SSL certificates
2021-05-11 11:15:34,420+0200 DEBUG ansible on_any args <ansible.executor.stats.AggregateStats object at 0x7fd4c0e6e9b0> kwargs
[***@hej1 ~]# cat /var/log/ovirt-hosted-engine-setup/ovirt-hosted-engine-setup-ansible-create_target_vm-20210511110328-fcgvwi.log

Can you recognize an issue you know from all the info I have provided, do I need to dig further?
_______________________________________________
Users mailing list -- ***@ovirt.org
To unsubscribe send an email to users-***@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/***@ovirt.org/message/DXLF
Harry O
2021-05-14 11:26:52 UTC
Permalink
Like this?

- name: Detect VLAN ID
shell: ip -d link show {{ he_bridge_if }} | grep 'vlan ' | grep -Po 'id \K[\d]+' | cat
environment: "{{ he_cmd_lang }}"
register: vlan_id_out
changed_when: true
- debug: var=vlan_id_out
- name: Set Engine public key as authorized key without validating the TLS/SSL certificates
authorized_key:
user: root
state: present
key: https://{{ he_fqdn }}/ovirt-engine/services/pki-resource?resource=engine-certificate&format=OPENSSH-PUBKEY
validate_certs: false
register: output
failed_when: never
- include_tasks: auth_sso.yml
- name: DEBUG
debug:
var: 'output'
- name: Ensure that the target datacenter is present
ovirt_datacenter:
state: present
_______________________________________________
Users mailing list -- ***@ovirt.org
To unsubscribe send an email to users-***@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/***@ovirt.
Harry O
2021-05-17 12:57:40 UTC
Permalink
The error still persist after change in following, is this the worng place? I couldn't do it under HCI setup: /usr/share/ansible/roles/ovirt.hosted_engine_setup/tasks/bootstrap_local_vm/05_add_host.yml

Change:
---
- name: Add host
block:
- name: Wait for ovirt-engine service to start
uri:
url: http://{{ he_fqdn }}/ovirt-engine/services/health
return_content: true
register: engine_status
until: "'DB Up!Welcome to Health Status!' in engine_status.content"
retries: 30
delay: 20
- debug: var=engine_status
- name: Open a port on firewalld
firewalld:
port: "{{ he_webui_forward_port }}/tcp"
permanent: false
immediate: true
state: enabled
- name: Expose engine VM webui over a local port via ssh port forwarding
command: >-
sshpass -e ssh -tt -o ServerAliveInterval=5 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -g -L
{{ he_webui_forward_port }}:{{ he_fqdn }}:443 {{ he_fqdn }}
environment:
- "{{ he_cmd_lang }}"
- SSHPASS: "{{ he_appliance_password }}"
changed_when: true
async: 86400
poll: 0
register: sshpf
- debug: var=sshpf
- name: Evaluate temporary bootstrap engine URL
set_fact: bootstrap_engine_url="https://{{ he_host_address }}:{{ he_webui_forward_port }}/ovirt-engine/"
- debug:
msg: >-
The bootstrap engine is temporary accessible over {{ bootstrap_engine_url }}
- name: Detect VLAN ID
shell: ip -d link show {{ he_bridge_if }} | grep 'vlan ' | grep -Po 'id \K[\d]+' | cat
environment: "{{ he_cmd_lang }}"
register: vlan_id_out
changed_when: true
- debug: var=vlan_id_out
- name: Set Engine public key as authorized key without validating the TLS/SSL certificates
authorized_key:
user: root
state: present
key: https://{{ he_fqdn }}/ovirt-engine/services/pki-resource?resource=engine-certificate&format=OPENSSH-PUBKEY
validate_certs: false
register: output
failed_when: never
- name: DEBUG
debug:
var: 'output'
- include_tasks: auth_sso.yml
- name: Ensure that the target datacenter is present
ovirt_datacenter:
state: present
name: "{{ he_data_center }}"
wait: true
local: false
auth: "{{ ovirt_auth }}"
register: dc_result_presence
- name: Ensure that the target cluster is present in the target datacenter
ovirt_cluster:
state: present
name: "{{ he_cluster }}"
data_center: "{{ he_data_center }}"
cpu_type: "{{ he_cluster_cpu_type | default(omit) }}"
wait: true
auth: "{{ ovirt_auth }}"
register: cluster_result_presence
- name: Check actual cluster location
fail:
msg: >-
A cluster named '{{ he_cluster }}' has been created earlier in a different
datacenter and cluster moving is still not supported.
You can avoid this specifying a different cluster name;
please fix accordingly and try again.
when: cluster_result_presence.cluster.data_center.id != dc_result_presence.datacenter.id
- name: Enable GlusterFS at cluster level
ovirt_cluster:
data_center: "{{ he_data_center }}"
name: "{{ he_cluster }}"
auth: "{{ ovirt_auth }}"
virt: true
gluster: true
fence_skip_if_gluster_bricks_up: true
fence_skip_if_gluster_quorum_not_met: true
when: he_enable_hc_gluster_service is defined and he_enable_hc_gluster_service
- name: Set VLAN ID at datacenter level
ovirt_network:
data_center: "{{ he_data_center }}"
name: "{{ he_mgmt_network }}"
vlan_tag: "{{ vlan_id_out.stdout }}"
auth: "{{ ovirt_auth }}"
when: vlan_id_out.stdout|length > 0
- name: Get active list of active firewalld zones
shell: set -euo pipefail && firewall-cmd --get-active-zones | grep -v "^\s*interfaces"
environment: "{{ he_cmd_lang }}"
register: active_f_zone
changed_when: true
- name: Configure libvirt firewalld zone
firewalld:
zone: libvirt
service: "{{ service_item }}"
permanent: true
immediate: true
state: enabled
with_items:
- vdsm
- libvirt-tls
- ovirt-imageio
- ovirt-vmconsole
- ssh
- vdsm
loop_control:
loop_var: service_item
when: "'libvirt' in active_f_zone.stdout_lines"
- name: Add host
ovirt_host:
cluster: "{{ he_cluster }}"
name: "{{ he_host_name }}"
state: present
public_key: true
address: "{{ he_host_address }}"
auth: "{{ ovirt_auth }}"
async: 1
poll: 0
- name: Pause the execution to let the user interactively reconfigure the host
block:
- name: Let the user connect to the bootstrap engine to manually fix host configuration
debug:
msg: >-
You can now connect to {{ bootstrap_engine_url }} and check the status of this host and
eventually remediate it, please continue only when the host is listed as 'up'
- include_tasks: pause_execution.yml
when: he_pause_host|bool
# refresh the auth token after a long operation to avoid having it expired
- include_tasks: auth_revoke.yml
- include_tasks: auth_sso.yml
- name: Wait for the host to be up
ovirt_host_info:
pattern: name={{ he_host_name }}
auth: "{{ ovirt_auth }}"
register: host_result_up_check
until: >-
host_result_up_check is succeeded and
host_result_up_check.ovirt_hosts|length >= 1 and
(
host_result_up_check.ovirt_hosts[0].status == 'up' or
host_result_up_check.ovirt_hosts[0].status == 'non_operational'
)
retries: 120
delay: 10
ignore_errors: true
- debug: var=host_result_up_check
- name: Notify the user about a failure
fail:
msg: >-
Host is not up, please check logs, perhaps also on the engine machine
when: host_result_up_check is failed
- name: Handle deployment failure
block:
- set_fact: host_id={{ host_result_up_check.ovirt_hosts[0].id }}
- name: Collect error events from the Engine
ovirt_event_facts:
auth: "{{ ovirt_auth }}"
search: "severity>=error"
register: error_events

- name: Generate the error message from the engine events
set_fact:
error_description: >-
{% for event in error_events.ansible_facts.ovirt_events | groupby('code') %}
{% if event[1][0].host.id == host_id %}
code {{ event[0] }}: {{ event[1][0].description }},
{% endif %}
{% endfor %}
ignore_errors: true

- name: Fail with error description
fail:
msg: >-
The host has been set in non_operational status,
deployment errors: {{ error_description }}
fix accordingly and re-deploy.
when: error_description is defined

- name: Fail with generic error
fail:
msg: >-
The host has been set in non_operational status,
please check engine logs,
more info can be found in the engine logs,
fix accordingly and re-deploy.
when: error_description is not defined

when: >-
host_result_up_check is succeeded and
host_result_up_check.ovirt_hosts|length >= 1 and
host_result_up_check.ovirt_hosts[0].status == 'non_operational'
rescue:
- name: Sync on engine machine
command: sync
changed_when: true
- name: Fetch logs from the engine VM
include_tasks: fetch_engine_logs.yml
ignore_errors: true
- include_tasks: clean_localvm_dir.yml
- include_tasks: clean_local_storage_pools.yml
- name: Notify the user about a failure
fail:
msg: >
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.

Log:
[ 00:04 ] Remove ovirt-engine-appliance rpm
[ < 1 sec ] Include custom tasks for after setup customization
[ < 1 sec ] Include Host vars
[ FAILED ] Set Engine public key as authorized key without validating the TLS/SSL certificates
2021-05-17 14:50:49,553+0200 DEBUG ansible on_any args <ansible.executor.stats.AggregateStats object at 0x7fb4ec4ee9b0> kwargs
[***@hej1 bootstrap_local_vm]# cat /var/log/ovirt-hosted-engine-setup/ovirt-hosted-engine-setup-ansible-create_target_vm-20210517144031-ebmk45.log
_______________________________________________
Users mailing list -- ***@ovirt.org
To unsubscribe send an email to users-***@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/***@ovirt.org/message/MDPUTUYBRFQ342UE6GGDSSCSBNQHFA
Harry O
2021-05-17 16:15:09 UTC
Permalink
Would that be this log file you need?
cat /var/log/ovirt-hosted-engine-setup/ovirt-hosted-engine-setup-ansible-create_target_vm-20210517144031-ebmk45.log
Thanks for helping me :)
_______________________________________________
Users mailing list -- ***@ovirt.org
To unsubscribe send an email to users-***@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/***@ovirt.org/message/KTJOCOWVLQ7EYG7LB2SSBMTI5MOF
Harry O
2021-05-18 06:57:06 UTC
Permalink
Cockpit crashes with an Ooops! And therefore closes the ansible output console, so we need to find the file with that output.
/ovirt-dashboard just shows blank white screen.
_______________________________________________
Users mailing list -- ***@ovirt.org
To unsubscribe send an email to users-***@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/u
Harry O
2021-05-21 14:34:11 UTC
Permalink
Do know what i mean?
_______________________________________________
Users mailing list -- ***@ovirt.org
To unsubscribe send an email to users-***@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/***@ovirt.org/message/IRIFXWYSHGB2JG5YF
Harry O
2021-05-23 19:39:11 UTC
Permalink
I have found some logs here, hope is is usable.

journalctl | grep ovirt:
May 23 21:25:17 hej1.5ervers.lan ovirt-ha-broker[72235]: ovirt-ha-broker mgmt_bridge.MgmtBridge ERROR Failed to getVdsStats: No 'network' in result
May 23 21:25:20 hej1.5ervers.lan platform-python[77432]: ansible-dnf Invoked with name=['ovirt-engine-appliance'] state=absent allow_downgrade=False autoremove=False bugfix=False disable_gpg_check=False disable_plugin=[] disablerepo=[] download_only=False enable_plugin=[] enablerepo=[] exclude=[] installroot=/ install_repoquery=True install_weak_deps=True security=False skip_broken=False update_cache=False update_only=False validate_certs=True lock_timeout=30 conf_file=None disable_excludes=None download_dir=None list=None releasever=None
May 23 21:25:27 hej1.5ervers.lan ovirt-ha-broker[72235]: ovirt-ha-broker mgmt_bridge.MgmtBridge ERROR Failed to getVdsStats: No 'network' in result




journalctl | grep cockpit:
May 23 20:19:49 hej1.5ervers.lan dbus-daemon[576]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.465' (uid=0 pid=2340 comm="cockpit-bridge " label="unconfined_u:unconfined_r:unconfined_t:s0")
May 23 20:24:10 hej1.5ervers.lan cockpit-bridge[2340]: [WARNING]: Consider using the yum, dnf or zypper module rather than running
May 23 20:24:10 hej1.5ervers.lan cockpit-bridge[2340]: 'rpm'. If you need to use command because yum, dnf or zypper is insufficient
May 23 20:24:10 hej1.5ervers.lan cockpit-bridge[2340]: you can add 'warn: false' to this command task or set 'command_warnings=False'
May 23 20:24:10 hej1.5ervers.lan cockpit-bridge[2340]: in ansible.cfg to get rid of this message.
May 23 20:27:46 hej1.5ervers.lan cockpit-bridge[2340]: ls: cannot access '/var/log/cockpit/ovirt-dashboard': No such file or directory
May 23 20:27:59 hej1.5ervers.lan cockpit-bridge[2340]: [WARNING]: provided hosts list is empty, only localhost is available. Note that
May 23 20:27:59 hej1.5ervers.lan cockpit-bridge[2340]: the implicit localhost does not match 'all'
May 23 21:08:50 hej1.5ervers.lan python3[64721]: ansible-firewalld Invoked with service=cockpit permanent=True immediate=True state=enabled timeout=0 icmp_block=None icmp_block_inversion=None port=None rich_rule=None zone=None source=None interface=None masquerade=None offline=None
May 23 21:26:02 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:26:02 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:26:03 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:26:03 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:26:03 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:26:03 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:26:03 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:26:03 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:28:57 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:28:57 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:28:57 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:28:57 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:28:57 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:28:57 hej1.5ervers.lan cockpit-tls[2274]: cockpit-tls: gnutls_handshake failed: A TLS fatal alert has been received.
May 23 21:28:57 hej1.5ervers.lan cockpit-ws[2287]: New connection to session 1
May 23 21:28:58 hej1.5ervers.lan dbus-daemon[576]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.465' (uid=0 pid=2340 comm="cockpit-bridge " label="unconfined_u:unconfined_r:unconfined_t:s0")




cockpit js console:
system/services#/?type=service:1 Refused to apply style from 'https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/shell/nav.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
cockpit.js:621 grep: /sys/class/dmi/id/power/autosuspend_delay_ms: Input/output error

p @ cockpit.js:621
cockpit.js:621 grep: /etc/dnf/automatic.conf: No such file or directory

p @ cockpit.js:621
cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/index.html#/:1 Refused to apply style from 'https://hej1:9090/src/base1/patternfly.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
cockpit.js:621 which: no nodectl in (/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin)

p @ cockpit.js:621
Dashboard.js:20 nodectl is not installed. Disabling node functionality
HostedEngineSetup.js:251 Failed to read file /var/lib/ovirt-hosted-engine-setup/answers/he-answer.conf. Check that the file exists and is not empty
AnsibleUtil.js:835 File /etc/ansible/hc_wizard_inventory.yml does not exist.
index.html:1 [DOM] Found 6 elements with non-unique id #: (More info: https://goo.gl/9p2vKq) <button id class=​"btn btn-default dropdown-toggle selectbox-option" type=​"button" data-toggle=​"dropdown" aria-expanded=​"false" disabled>​…​</button>​ <button id class=​"btn btn-default dropdown-toggle selectbox-option" type=​"button" data-toggle=​"dropdown" aria-expanded=​"false" disabled>​…​</button>​ <button id class=​"btn btn-default dropdown-toggle selectbox-option" type=​"button" data-toggle=​"dropdown" aria-expanded=​"false" disabled>​…​</button>​ <button id class=​"btn btn-default dropdown-toggle selectbox-option" type=​"button" data-toggle=​"dropdown" aria-expanded=​"false">​…​</button>​ <button id class=​"btn btn-default dropdown-toggle selectbox-option" type=​"button" data-toggle=​"dropdown" aria-expanded=​"false">​…​</button>​ <button id class=​"btn btn-default dropdown-toggle selectbox-option" type=​"button" data-toggle=​"dropdown" aria-expanded=​"false">​…​</button>​
index.html:1 [DOM] Found 3 elements with non-unique id #fqdn: (More info: https://goo.gl/9p2vKq) <input id=​"fqdn" type=​"text" placeholder=​"Public Network FQDN" title=​"Enter the address of public network which will be used for ovirt-engine data traffic." class=​"form-control" value=​"hej1.5ervers.lan" disabled=​"true">​ <input id=​"fqdn" type=​"text" placeholder=​"Public Network FQDN" title=​"Enter the address of public network which will be used for ovirt-engine data traffic." class=​"form-control" value=​"hej2.5ervers.lan" disabled=​"true">​ <input id=​"fqdn" type=​"text" placeholder=​"Public Network FQDN" title=​"Enter the address of public network which will be used for ovirt-engine data traffic." class=​"form-control" value=​"hej3.5ervers.lan" disabled=​"true">​
index.html:1 [DOM] Found 3 elements with non-unique id #vdoCheckBox: (More info: https://goo.gl/9p2vKq) <input id=​"vdoCheckBox" type=​"checkbox" class=​"ansible-wizard-thinp-checkbox" title=​"Configure dedupe & compression using VDO.">​ <input id=​"vdoCheckBox" type=​"checkbox" class=​"ansible-wizard-thinp-checkbox" title=​"Configure dedupe & compression using VDO.">​ <input id=​"vdoCheckBox" type=​"checkbox" class=​"ansible-wizard-thinp-checkbox" title=​"Configure dedupe & compression using VDO.">​
AnsibleUtil.js:821 Directory /etc/ansible is exist.
AnsibleUtil.js:821 Directory /var/lib/ovirt-hosted-engine-setup/answers is exist.
AnsibleUtil.js:920 tag: 1:1416381-1621794221.831547654
AnsibleUtil.js:835 File /etc/ansible/hc_wizard_inventory.yml does not exist.
AnsibleUtil.js:856 File /etc/ansible/hc_wizard_inventory.yml is not present to take backup, so creating the file.
AnsibleUtil.js:835 File /var/lib/ovirt-hosted-engine-setup/answers/he-answer.conf does not exist.
AnsibleUtil.js:856 File /var/lib/ovirt-hosted-engine-setup/answers/he-answer.conf is not present to take backup, so creating the file.
Ansible-Wizard-Preview.js:52 Ansible configuration saved successfully to /etc/ansible/hc_wizard_inventory.yml
Ansible-Wizard-Preview.js:58 Hosted Engine configuration saved successfully to /var/lib/ovirt-hosted-engine-setup/answers/he-answer.conf
overview.js:335 U
overview.js:335 U
AnsibleUtil.js:726 Playbook executed successfully.
AnsibleUtil.js:821 Directory /usr/share/cockpit/ovirt-dashboard/ansible is exist.
AnsibleUtil.js:835 File /usr/share/cockpit/ovirt-dashboard/ansible/ansibleStatus.conf does not exist.
AnsibleUtil.js:856 File /usr/share/cockpit/ovirt-dashboard/ansible/ansibleStatus.conf is not present to take backup, so creating the file.
Ansible-Wizard-Execution.js:112 Status File: true
AnsibleUtil.js:824 Directory /var/log/cockpit/ovirt-dashboard does not exist.
AnsibleUtil.js:791 Directory /var/log/cockpit/ovirt-dashboard created successfully.
Ansible-Wizard-Execution.js:112 Status File: true
DefaultValueProvider.js:95 General system data retrieval started.
HeSetupWizardContainer.js:109 Attempting to add gdeploy properties to the answer file.
PlaybookUtil.js:156 Ansible output file directory created successfully.
HostedEngineSetupUtil.js:1208 Gluster values successfully added.
Validation.js:138 Host FQDN: hej1.5ervers.lan

PlaybookUtil.js:30 Execution of /usr/share/ovirt-hosted-engine-setup/ansible/trigger_role.yml with tags get_network_interfaces started
PlaybookUtil.js:156 Ansible output file directory created successfully.
PlaybookUtil.js:30 Execution of /usr/share/ovirt-hosted-engine-setup/ansible/trigger_role.yml with tags validate_hostnames started
DefaultValueProvider.js:98 General system data retrieved successfully.
PlaybookUtil.js:67 Execution of /usr/share/ovirt-hosted-engine-setup/ansible/trigger_role.yml with tags validate_hostnames completed successfully
Validation.js:176 Validation of host FQDN, hej1.5ervers.lan, succeeded
PlaybookUtil.js:67 Execution of /usr/share/ovirt-hosted-engine-setup/ansible/trigger_role.yml with tags get_network_interfaces completed successfully
DefaultValueProvider.js:134 Network interfaces retrieved successfully
index.html:1 [DOM] Found 6 elements with non-unique id #: (More info: https://goo.gl/9p2vKq) <button id class=​"btn btn-default dropdown-toggle selectbox-option" type=​"button" data-toggle=​"dropdown" aria-expanded=​"false">​…​</button>​ <button id class=​"btn btn-default dropdown-toggle selectbox-option" type=​"button" data-toggle=​"dropdown" aria-expanded=​"false">​…​</button>​ <button id class=​"btn btn-default dropdown-toggle selectbox-option" type=​"button" data-toggle=​"dropdown" aria-expanded=​"false">​…​</button>​ <button id class=​"btn btn-default dropdown-toggle selectbox-option" type=​"button" data-toggle=​"dropdown" aria-expanded=​"false">​…​</button>​ <button id class=​"btn btn-default dropdown-toggle selectbox-option" type=​"button" data-toggle=​"dropdown" aria-expanded=​"false">​…​</button>​ <button id class=​"btn btn-default dropdown-toggle selectbox-option" type=​"button" data-toggle=​"dropdown" aria-expanded=​"false">​…​</button>​
PlaybookUtil.js:156 Ansible output file directory created successfully.
PlaybookUtil.js:30 Execution of /usr/share/ovirt-hosted-engine-setup/ansible/trigger_role.yml with tags validate_hostnames started
HeWizardVmContainer.js:108 DNS resolution of Engine VM IP completed successfully.
HeWizardVmContainer.js:108 DNS resolution of Engine VM IP completed successfully.
PlaybookUtil.js:67 Execution of /usr/share/ovirt-hosted-engine-setup/ansible/trigger_role.yml with tags validate_hostnames completed successfully
Validation.js:112 Validation of FQDN hej.5ervers.lan succeeded
AnsiblePhaseExecutor.js:122 File /tmp/initial_clean_out.json cleared.
AnsiblePhaseExecutor.js:122 File /tmp/bootstrap_local_vm_out.json cleared.
AnsiblePhaseExecutor.js:140 Var file directory created successfully.
AnsibleVarFilesGenerator.js:103 Phase INITIAL_CLEAN variable file successfully created: /var/lib/ovirt-hosted-engine-setup/cockpit/ansibleVarFileXFCJjd.var
overview.js:335 U
AnsiblePhaseExecutor.js:223 Execution of /usr/share/ovirt-hosted-engine-setup/ansible/trigger_role.yml with tag initial_clean completed successfully.
AnsibleVarFilesGenerator.js:103 Phase BOOTSTRAP_VM variable file successfully created: /var/lib/ovirt-hosted-engine-setup/cockpit/ansibleVarFile5FGcXh.var
overview.js:335 U
overview.js:335 U
overview.js:335 U
overview.js:335 U
overview.js:335 U
overview.js:335 U
overview.js:335 U
overview.js:335 U
overview.js:335 U
overview.js:335 U
AnsiblePhaseExecutor.js:223 Execution of /usr/share/ovirt-hosted-engine-setup/ansible/trigger_role.yml with tag bootstrap_local_vm completed successfully.
AnsiblePhaseExecutor.js:97 File /var/lib/ovirt-hosted-engine-setup/cockpit/ansibleVarFileXFCJjd.var deleted.
AnsiblePhaseExecutor.js:97 File /var/lib/ovirt-hosted-engine-setup/cockpit/ansibleVarFile5FGcXh.var deleted.
AnsiblePhaseExecutor.js:97 File /var/tmp/ovirt-hosted-engine-setup/cockpit/bootstrap_vm-202142320335-9tfhhq.pipe deleted.
AnsiblePhaseExecutor.js:122 File /tmp/create_storage_domain_out.json cleared.
AnsiblePhaseExecutor.js:122 File /tmp/final_clean_out.json cleared.
AnsiblePhaseExecutor.js:122 File /tmp/create_target_vm_out.json cleared.
AnsiblePhaseExecutor.js:140 Var file directory created successfully.
AnsibleVarFilesGenerator.js:103 Phase CREATE_STORAGE variable file successfully created: /var/lib/ovirt-hosted-engine-setup/cockpit/ansibleVarFilejLwJwz.var
AnsiblePhaseExecutor.js:223 Execution of /usr/share/ovirt-hosted-engine-setup/ansible/trigger_role.yml with tag create_storage_domain completed successfully.
AnsibleVarFilesGenerator.js:103 Phase TARGET_VM variable file successfully created: /var/lib/ovirt-hosted-engine-setup/cockpit/ansibleVarFilexaUBE8.var
overview.js:335 U
overview.js:335 U
overview.js:335 U
overview.js:335 U
react-dom.production.min.js:188 Invariant Violation: Minified React error #31; visit https://reactjs.org/docs/error-decoder.html?invariant=31&args[]=object%20with%20keys%20%7Bmsg%2C%20failed%2C%20invocation%2C%20_ansible_no_log%2C%20changed%2C%20host%2C%20ansible_loop_var%2C%20_ansible_item_label%7D&args[]= for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
at e.exports (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:1:138260)
at h (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:281)
at vo (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:56485)
at f (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:58076)
at m (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:59178)
at https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:61134
at Fo (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:62374)
at _o (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:62309)
at Ro (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:68330)
at ma (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:77019)
zo @ react-dom.production.min.js:188
react-dom.production.min.js:188 Invariant Violation: Minified React error #31; visit https://reactjs.org/docs/error-decoder.html?invariant=31&args[]=object%20with%20keys%20%7Bmsg%2C%20failed%2C%20invocation%2C%20_ansible_no_log%2C%20changed%2C%20host%2C%20ansible_loop_var%2C%20_ansible_item_label%7D&args[]= for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
at e.exports (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:1:138260)
at h (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:281)
at vo (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:56485)
at f (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:58076)
at m (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:59178)
at https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:61134
at Fo (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:62374)
at _o (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:62309)
at Ro (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:68330)
at ma (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:77019)
zo @ react-dom.production.min.js:188
react-dom.production.min.js:212 Uncaught Invariant Violation: Minified React error #31; visit https://reactjs.org/docs/error-decoder.html?invariant=31&args[]=object%20with%20keys%20%7Bmsg%2C%20failed%2C%20invocation%2C%20_ansible_no_log%2C%20changed%2C%20host%2C%20ansible_loop_var%2C%20_ansible_item_label%7D&args[]= for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
at e.exports (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:1:138260)
at h (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:281)
at vo (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:56485)
at f (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:58076)
at m (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:59178)
at https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:61134
at Fo (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:62374)
at _o (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:62309)
at Ro (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:68330)
at ma (https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/ovirt-dashboard/vendor.88be45fc.chunk.js:82:77019)
AnsiblePhaseExecutor.js:232 Execution of /usr/share/ovirt-hosted-engine-setup/ansible/trigger_role.yml with tag create_target_vm failed to complete.
AnsiblePhaseExecutor.js:97 File /var/lib/ovirt-hosted-engine-setup/cockpit/ansibleVarFilejLwJwz.var deleted.
AnsiblePhaseExecutor.js:97 File /var/tmp/ovirt-hosted-engine-setup/cockpit/create_storage-2021423211541-fqyopf.pipe deleted.
AnsiblePhaseExecutor.js:97 File /var/lib/ovirt-hosted-engine-setup/cockpit/ansibleVarFilexaUBE8.var deleted.
AnsiblePhaseExecutor.js:97 File /var/tmp/ovirt-hosted-engine-setup/cockpit/target_vm-202142321177-rq74lf.pipe deleted.
ovirt-dashboard:1 Refused to apply style from 'https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/shell/nav.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
index.html:1 Refused to apply style from 'https://hej1:9090/src/base1/patternfly.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
DevTools failed to load SourceMap: Could not load content for https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/shell/index.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/base1/cockpit.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/base1/jquery.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/updates/updates.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/system/overview.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/performance/performance.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/system/services.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/shell/index.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/updates/updates.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/system/overview.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/base1/cockpit.min.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for https://hej1:9090/cockpit/$42573f990c732f5837e2f88e49b898a696f905eb9ac77b058eb1335cafc7082a/system/services.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
_______________________________________________
Users mailing list -- ***@ovirt.org
To unsubscribe send an email to users-***@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/***@ovirt.org/messag
Harry O
2021-05-24 17:41:38 UTC
Permalink
It's same issue in other browsers.
_______________________________________________
Users mailing list -- ***@ovirt.org
To unsubscribe send an email to users-***@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/***@ovirt.org/message/2ZW
Harry O
2021-05-27 12:21:05 UTC
Permalink
Hi,

This did the job for the first issue, thanks.
vi /usr/lib/systemd/system/cockpit.service
ExecStart=/usr/libexec/cockpit-tls --idle-timeout 180

Now I get this:
[ INFO ] TASK [ovirt.ovirt.hosted_engine_setup : Fail if Engine IP is different from engine's he_fqdn resolved IP]
[ ERROR ] fatal: [localhost]: FAILED! => {"changed": false, "msg": "Engine VM IP address is while the engine's he_fqdn hej.5ervers.lan resolves to 192.168.4.144. If you are using DHCP, check your DHCP reservation configuration"}

But the information is correct.
_______________________________________________
Users mailing list -- ***@ovirt.org
To unsubscribe send an email to users-***@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/***@ovirt.org/messag
Harry O
2021-05-27 14:57:01 UTC
Permalink
Nope, it didn't fix it, just typed in the wrong IP-address
_______________________________________________
Users mailing list -- ***@ovirt.org
To unsubscribe send an email to users-***@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/use

Loading...