[SOLVED] Only SSH - No WebGUI

nicoska

Member
Feb 26, 2023
10
1
8
Fish new install in a new minipc. After the reboot I'm able to use only SSH to access it. WebGUI does not work.
Running
Code:
journalctl -b -u pveproxy
give me this output lines:

Code:
Feb 17 23:16:39 babynicoska pveproxy[1187]: /etc/pve/local/pve-ssl.key: failed to load local private key (key_file or key) at /usr/share/perl5/PVE/APIServer/AnyEvent.pm line 200>
Feb 17 23:16:39 babynicoska pveproxy[1188]: /etc/pve/local/pve-ssl.key: failed to load local private key (key_file or key) at /usr/share/perl5/PVE/APIServer/AnyEvent.pm line 200>
Feb 17 23:16:39 babynicoska pveproxy[1049]: worker 1186 finished
Feb 17 23:16:39 babynicoska pveproxy[1049]: starting 1 worker(s)
Feb 17 23:16:39 babynicoska pveproxy[1049]: worker 1189 started
Feb 17 23:16:39 babynicoska pveproxy[1189]: /etc/pve/local/pve-ssl.key: failed to load local private key (key_file or key) at /usr/share/perl5/PVE/APIServer/AnyEvent.pm line 200>

I tried running
Code:
pvecm updatecerts --force
and that was the output:

Code:
root@babynicoska:~# pvecm updatecerts --force
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
    LANGUAGE = (unset),
    LC_ALL = (unset),
    LC_TERMINAL = "iTerm2",
    LC_CTYPE = "UTF-8",
    LANG = "en_US.UTF-8"
    are supported and installed on your system.
perl: warning: Falling back to a fallback locale ("en_US.UTF-8").
ipcc_send_rec[1] failed: Connection refused
ipcc_send_rec[2] failed: Connection refused
ipcc_send_rec[3] failed: Connection refused
Unable to load access control list: Connection refused

I'm able to ping google.com and other internal ip.

That's really strange
 
How did you install PVE? With the installer or on top of Debian?

Is the pve-cluster service running? systemctl status pve-cluster.service
 
This solved my issue:
Code:
systemctl stop pve-cluster
rm -f /var/lib/pve-cluster/.pmxcfs.lockfile
systemctl start pve-cluster

Nico