mirror of
https://github.com/adminsyspro/proxcenter-ui.git
synced 2026-04-25 14:35:56 +03:00
[GH-ISSUE #30] [Bug]: SSH Fetch error when putting host in mainteance mode. #124
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#124
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 @Trembler34 on GitHub (Feb 19, 2026).
Original GitHub issue: https://github.com/adminsyspro/proxcenter-ui/issues/30
Bug Description
Hello,
We are trying to understand what is causing this. All 3 hosts on the cluster do the same thing. SSH is enabled and can be accessed manually through ssh to confirm user/password.
Steps to Reproduce
Expected Behavior
Host going into maintenance mode
Actual Behavior
fetch error
ProxCenter Version
latest
Proxmox VE Version
latest
Browser
Firefox
Logs / Screenshots
@adminsyspro commented on GitHub (Feb 20, 2026):
Hi! Thanks for reporting this.
The "Fetch Error" you're seeing happens because maintenance mode (and VM unlock) rely on SSH commands that were being routed through the Go orchestrator (
ORCHESTRATOR_URL/api/v1/ssh/exec). In Community edition, the orchestrator isn't running, so the request fails with a network error — which surfaces as a generic "Fetch Error" in the UI.This is now fixed in commit
044ed8f. The SSH layer now falls back to a direct SSH connection (using thessh2library in Node.js) when the orchestrator is unavailable. So maintenance mode, VM unlock, and SSH connection testing should all work without the orchestrator.To get the fix, pull the latest version and rebuild. Let us know if the issue persists after updating!
@Trembler34 commented on GitHub (Feb 20, 2026):
Hi, unfortunately it's still happening. I updated, rebooted for good measure, fresh login, attempted maintenance mode and it still throws the fetch error.
Just to confirm this is correct, this is what i see..
And to update i did
cd /opt/proxcenter && docker compose pull
it definitely appeared to pull the new image.
Is that correct process?