Move Netdata to VM, cleanup host
- Netdata now runs in VM 100 instead of Proxmox host - Removed WireGuard config from host (only NAT forwarding remains) - Added Netdata migration troubleshooting docs - Docker monitoring enabled for Netdata 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -679,6 +679,36 @@ VPS (10.0.0.1) --> Host:51820 (NAT) --> VM:51820 (WireGuard) --> Container
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
### Netdata nach VM-Migration
|
||||||
|
|
||||||
|
**Problem:** Netdata Dashboard nicht erreichbar nach Container-Migration in VM
|
||||||
|
|
||||||
|
**Ursache:** Netdata lief auf dem Proxmox Host, aber nginx zeigt auf 10.0.0.2 (VM)
|
||||||
|
|
||||||
|
**Loesung:** Netdata in der VM installieren:
|
||||||
|
```bash
|
||||||
|
# Auf VM (192.168.178.200)
|
||||||
|
curl -s https://get.netdata.cloud/kickstart.sh > /tmp/netdata-kickstart.sh
|
||||||
|
bash /tmp/netdata-kickstart.sh --stable-channel --disable-telemetry --dont-wait
|
||||||
|
|
||||||
|
# Docker-Monitoring aktivieren
|
||||||
|
usermod -aG docker netdata
|
||||||
|
systemctl restart netdata
|
||||||
|
|
||||||
|
# Testen
|
||||||
|
curl http://localhost:19999/api/v1/info
|
||||||
|
```
|
||||||
|
|
||||||
|
**Netdata vom Host entfernen:**
|
||||||
|
```bash
|
||||||
|
# Auf Proxmox Host
|
||||||
|
systemctl stop netdata
|
||||||
|
systemctl disable netdata
|
||||||
|
apt remove --purge netdata -y
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## Kontakt / Hilfe
|
## Kontakt / Hilfe
|
||||||
|
|
||||||
- **Gitea Issues:** https://eckardt-git.duckdns.org/Martin/proxmox-infrastruktur/issues
|
- **Gitea Issues:** https://eckardt-git.duckdns.org/Martin/proxmox-infrastruktur/issues
|
||||||
|
|||||||
Reference in New Issue
Block a user