mirror of
https://github.com/community-scripts/ProxmoxVE-Local.git
synced 2026-04-24 20:25:50 +03:00
[GH-ISSUE #484] 0.5.6: Auto-Detect -> 0 Running LXC Containers? #140
Labels
No labels
bug
enhancement
enhancement
feature
in progress
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ProxmoxVE-Local#140
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 @white-rabbit07 on GitHub (Jan 30, 2026).
Original GitHub issue: https://github.com/community-scripts/ProxmoxVE-Local/issues/484
Hi.
My old ProxmoxVE-Local-installation (0.5.3) didn't work anymore.
So I removed it and installed a new LXC-Container; this time: 0.5.6.
Then I connected the script to the PVE-Host ("Test connection" was successful) and afterwards I tried to
"Auto-Detect Containers & VMs".
The result is always:
0 Running LXC
0 Running VMs
... but that's not true. I have several running LXC/VMs (also tagged with "community script").
What's wrong there?
Thanks!
@novafire99 commented on GitHub (Jan 31, 2026):
First time installing it and seeing the same. PVE 9.1.4 ZFS and 0.5.6 of the script, cannot see any of the previously installed scripts even though they are tagged right.
@michelroegl-brunner commented on GitHub (Feb 1, 2026):
Welp, might have broken something, i did a few refactors last week. I take a look tomorrow and publish a patch when it is fixed.
@jeffbyrnes commented on GitHub (Feb 13, 2026):
Totally new install of this, seeing this same behavior despite having multiple
community-scriptLXC containers running on my ProxMox setup.Look forward to a fix, this seems handy!
@dccrain commented on GitHub (Feb 16, 2026):
same here
@Gurgi66 commented on GitHub (Feb 19, 2026):
I have the same problem ...
@wokieman commented on GitHub (Feb 21, 2026):
I have the same problem.Is there any fix?
@iaing80 commented on GitHub (Feb 21, 2026):
Same issue, old version no longer worked. Blatted and redployed to the latest but scans are not working on any of the 4 hosts.
@donut-z commented on GitHub (Feb 22, 2026):
Seems to be the same for me. Just did a fresh install, SSH connection appears to work, .conf files contain "community-script" tag but are not detected.
@writzthecat commented on GitHub (Feb 24, 2026):
same here...
@trynity commented on GitHub (Feb 25, 2026):
I will actually have to thank Claude here for figuring out the exact issue, since I had the following error in the logs to at least go off of:
Claude Output, Potentially Half Wrong
Why This Happens
The config path uses server.name as the Proxmox node name:
This fails when:
server.namedoesn't match the actual Proxmox node name — e.g., you named your server "My Server" in the app but the Proxmox node is namedpveorproxmox.Note also that the 2>/dev/null suppresses stderr, but the command still exits with code 1 when the file is missing, which then gets rejected as an error.
What I noticed is I had set my node name in PVE Scripts as nodename.domain.com, whereas it's just named nodename in ProxMox. This resulted in it trying to find the node-specific files, due to this change:
github.com/community-scripts/ProxmoxVE-Local@6d2df9929cand failing because nodename inconsistency,.So ensure your node name in the PVE Script settings matches what node name ProxMox is set to, and now it automagically imported everything.
I am not a TypeScript or JavaScript developer in the slightest, but this at least seems to fix the issue. Likely it should error out sooner, such as noting the entire nodename directory doesn't exist, or falling back to non-node specific paths like in previous behavior.
@wokieman commented on GitHub (Feb 25, 2026):
works like a charm.you are a life saver thank you
@novafire99 commented on GitHub (Feb 25, 2026):
This partually fixed the problem, would be good if the script detected the problem, or instead have it automatically set it when adding the server.
It only detected the low numbered ID, which just happens to be the the ProxmoxVE-local in my case (101). All the reset of my id's are much larger eg: 19216802, and not exactly sequential, I can manually add them, but it won't auto detect them.