Inital commit
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
# Helm – HOOBS Helm-UI
|
||||
|
||||
**Zusammenfassung**: Helm ist ein Node.js-basiertes Interface/Shell für HOOBS, das auf Port 9090 läuft. Teil der HOOBS-Plattform.
|
||||
**Quellen**: 🔌 SSH (`systemctl status helm.service`, `cat /lib/systemd/system/helm.service`)
|
||||
**Zuletzt aktualisiert**: 2026-06-19
|
||||
|
||||
---
|
||||
|
||||
## Status
|
||||
|
||||
| Metrik | Wert |
|
||||
|---|---|
|
||||
| **Dienst** | `helm.service` |
|
||||
| **Aktiv seit** | 19. Juni 2026, 22:21 Uhr (zuletzt neugestartet) |
|
||||
| **Port** | 9090 (HTTP) |
|
||||
| **Type** | simple (root) |
|
||||
|
||||
## Konfiguration
|
||||
|
||||
- **Service-Definition**: `/lib/systemd/system/helm.service`
|
||||
```ini
|
||||
[Unit]
|
||||
Description=Helm
|
||||
After=network-online.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=root
|
||||
ExecStart=/usr/bin/helm shell --port 9090
|
||||
Restart=always
|
||||
RestartSec=3
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
```
|
||||
- **Binary**: `/usr/bin/helm` (Node.js-Skript, `env -S node --max-old-space-size=256`)
|
||||
- Der Dienst hatte zum Erfassungszeitpunkt einen Fehler (Error-Logs in `systemctl status` sichtbar)
|
||||
|
||||
## Verwandte Seiten
|
||||
|
||||
- [hoobs](./hoobs.md)
|
||||
Reference in New Issue
Block a user