mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-04-28 03:20:11 +00:00
docs: Clarify multi-server Proxmox temperature monitoring setup
The quick-setup command from Pulse UI uses --standalone --http-mode which is for Docker deployments. Users with multiple Proxmox servers (Pulse on server A, monitoring server B) should use --ctid instead. The installer detects when the container doesn't exist locally and installs in "host monitoring only" mode. Related to #785
This commit is contained in:
parent
bc7fa17b54
commit
82e526877b
1 changed files with 15 additions and 5 deletions
|
|
@ -35,16 +35,26 @@ If running Pulse in Docker, you must install the proxy on the host and share the
|
|||
|
||||
3. **Restart Pulse**: `docker compose up -d`
|
||||
|
||||
## 🌐 Remote Nodes (HTTP Mode)
|
||||
## 🌐 Multi-Server Proxmox Setup
|
||||
|
||||
For nodes *other* than the one running Pulse, install the proxy in HTTP mode.
|
||||
If you have Pulse running on **Server A** and want to monitor temperatures on **Server B** (a separate Proxmox host without Pulse):
|
||||
|
||||
1. **Run Installer on Remote Node**:
|
||||
1. **Run Installer on Server B** (the remote Proxmox host):
|
||||
```bash
|
||||
curl -fsSL https://github.com/rcourtman/Pulse/releases/latest/download/install-sensor-proxy.sh | \
|
||||
sudo bash -s -- --standalone --http-mode --pulse-server http://<pulse-ip>:7655
|
||||
sudo bash -s -- --ctid <PULSE_CONTAINER_ID> --pulse-server http://<pulse-ip>:7655
|
||||
```
|
||||
2. **Verify**: Pulse will automatically detect the proxy and start collecting data.
|
||||
Replace `<PULSE_CONTAINER_ID>` with the LXC container ID where Pulse runs on Server A (e.g., `100`).
|
||||
|
||||
2. The installer will detect that the container doesn't exist locally and install in **host monitoring only** mode:
|
||||
```
|
||||
[WARN] Container 100 does not exist on this node
|
||||
[WARN] Will install sensor-proxy for host temperature monitoring only
|
||||
```
|
||||
|
||||
3. **Verify**: `systemctl status pulse-sensor-proxy`
|
||||
|
||||
> **Note**: The `--standalone --http-mode` flags shown in the Pulse UI quick-setup are for Docker deployments, not bare Proxmox hosts. For multi-server Proxmox setups, use the `--ctid` approach above.
|
||||
|
||||
## 🔧 Troubleshooting
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue