dalu
1
Installed via apt repo.
Rebooted and where is the systemd service?
There is none.
Actually that’s not true.
Installed via install script.
# which influxdb3
/root/.influxdb//influxdb3
# influxdb3 --version
influxdb3 3.1.0, revision 482dd8aac580c04f37e8713a8fffae89ae8bc264
And people wonder why everyone prefers Prometheus
dalu
2
Thanks Co-Pilot
[Unit]
Description=InfluxDB 3 Service
After=network.target
[Service]
Type=simple
ExecStart=/root/.influxdb/influxdb3 serve --node-id=main --http-bind=0.0.0.0:8181 --object-store=file --data-dir /root/.influxdb/data
Restart=on-failure
User=root
WorkingDirectory=/root/.influxdb
[Install]
WantedBy=multi-user.target
1 Like