When I request the console I get the following error in the console window:
In the log line I get:
I have this error now and then(after reinstalling,...) and will describe the solution:
The problem is, that the host where I started the WebGUI(server-a) has an incorrect ssh-host-key for the host the vm is on(server-b) and can not open a console(or migrate). To fix this the following is necessary:
Code:
failed to connect to server
In the log line I get:
Code:
Host Key verification failed
TASK ERROR: Failed to run vncproxy.
I have this error now and then(after reinstalling,...) and will describe the solution:
The problem is, that the host where I started the WebGUI(server-a) has an incorrect ssh-host-key for the host the vm is on(server-b) and can not open a console(or migrate). To fix this the following is necessary:
- Open a root console at server-a
- run the command:
Code:/usr/bin/ssh -e none -o 'HostKeyAlias=server-b-name' root@server-b-ip-address /bin/true
server-b-ip-address is the primary cluster-ip-address of server-b
Example:
My server is named px03 and its primary ip address is 192.168.207.12
Code:/usr/bin/ssh -e none -o 'HostKeyAlias=px03' root@192.168.207.12 /bin/true
- If there are any errors fix them according to the ssh output. Host Key Verification failed means there's a wrong key in /root/.ssh/known_hosts. The wrong key should be removed and the new key should be accepted when prompted for at the ssh command.
- If the command succeeds with no output all should be perfect agin