You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pveproxy service fails to start properly because it cannot write to /var/log/pveproxy/access.log which results in a worker process loop and inaccessible web interface. This happens due to the missing /var/log/pveproxy directory or incorrect permissions on it.
It might've been because i created a btrfs subvol on /var/log, but i doubt thats the issue.
Steps to Reproduce
Install and configure Proxmox on NixOS using the proxmox-nixos module.
Attempt to start the pveproxy service.
Observe the service logs using journalctl -u pveproxy -f or try accessing the web interface at https://server-ip:8006.
I resolved it by:
Creating the log directory: sudo mkdir -p /var/log/pveproxy
log: https://pastebin.com/W79Sp4Aw
The pveproxy service fails to start properly because it cannot write to /var/log/pveproxy/access.log which results in a worker process loop and inaccessible web interface. This happens due to the missing /var/log/pveproxy directory or incorrect permissions on it.
It might've been because i created a btrfs subvol on /var/log, but i doubt thats the issue.
Steps to Reproduce
journalctl -u pveproxy -f
or try accessing the web interface at https://server-ip:8006.I resolved it by:
Creating the log directory:
sudo mkdir -p /var/log/pveproxy
Setting the correct permissions:
The text was updated successfully, but these errors were encountered: