mirror of
https://github.com/adminsyspro/proxcenter-ui.git
synced 2026-04-25 14:35:56 +03:00
[GH-ISSUE #32] [Bug]: pbs and pve not accepting api keys #126
Labels
No labels
bug
enhancement
feature-request
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/proxcenter-ui#126
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ArMaTeC on GitHub (Feb 20, 2026).
Original GitHub issue: https://github.com/adminsyspro/proxcenter-ui/issues/32
Bug Description
First time user and im getting stuck at the first milestone with the error
PVE authentication failed: PVE 401 /version:
API key format(not a real key): root@pam!proxcenter!tokenid=4504w1c9-cd9b-408d-b20c-844bbc8d4198
Steps to Reproduce
Expected Behavior
server is added
Actual Behavior
PVE authentication failed: PVE 401 /version:
ProxCenter Version
Latest docker
Proxmox VE Version
9.1.5
Browser
No response
Logs / Screenshots
No response
@adminsyspro commented on GitHub (Feb 20, 2026):
Hi, thanks for reporting this.
Looking at your token format, the issue is likely there. You wrote:
root@pam!proxcenter!tokenid=4504w1c9-cd9b-408d-b20c-844bbc8d4198The correct Proxmox API token format is
user@realm!tokenname=secret, with a single!separator. If your token is named "proxcenter", it should be:root@pam!proxcenter=4504w1c9-cd9b-408d-b20c-844bbc8d4198The
401 /versionerror confirms that Proxmox itself is rejecting the credentials, which points to a format issue rather than a ProxCenter bug.Also make sure the token was created with
--privsep 0or has explicit permissions assigned to it (not just inherited from the user).Let us know if that fixes it.
@ArMaTeC commented on GitHub (Feb 20, 2026):
Yes that fixed the issue thank you