Can't login to proxmox via webGUI

Novian

New Member
Feb 3, 2025
7
0
1
Hi, im sorry im newbie in proxmox, i cannot login into proxmox via webGUI, it says that "Login failed. Please try again"
i've changed the realm too, but i cannot login
but i can login via SSH1738545490162.png1738545447274.png
 
Login from SSH, create a file with the following:
Code:
password="YOURPASSWORD"
curl -k -X POST "https://localhost:8006/api2/json/access/ticket" \
     -d "username=root@pam" \
     -d "password=$password"

execute it, what happens?

replace YOURPASSWORD with your password


Blockbridge : Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
 
This can also occur on a standalone node and youll need to shell in and run the following.
Bash:
systemctl stop pve-cluster.service
rm -f /var/lib/pve-cluster/.pmxcfs.lockfile
systemctl start pve-cluster.service
 
how can i clean the disk?
Take a look at this thread, it has similar question and relevant suggestions:
https://forum.proxmox.com/threads/local-disk-full.146137/

is there any connection with why can't i login proxmox webGUI?
Proxmox services, as you can see from the log snippet you provided, require extra space to log things, write configuration to database, update temporary files, etc. While SSH is less demanding, it will also fail at some point when there is absolutely no blocks left.

In short, because you are out of space not all PVE services are running properly.



Blockbridge : Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
 
Take a look at this thread, it has similar question and relevant suggestions:
https://forum.proxmox.com/threads/local-disk-full.146137/


Proxmox services, as you can see from the log snippet you provided, require extra space to log things, write configuration to database, update temporary files, etc. While SSH is less demanding, it will also fail at some point when there is absolutely no blocks left.

In short, because you are out of space not all PVE services are running properly.



Blockbridge : Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
1738632323633.png
1738632374575.png
1738632409398.png
 
Last edited: