'InfluxDB: unrecognized service
enter image description hereso I am tried to following tutorial to install INFLUXDB and it already installed. but when I tried to run the service it wont work. it says INFLUXDB: unrecognized service. I am using WSL ubuntu
Solution 1:[1]
On WSL Ubuntu, you can manually run the InfluxDB daemon with:
influxd &
The ampersand at the end makes the daemon run in the background, so you can still execute commands after launching it. You can also close the WSL window, and the daemon will keep running.
Note: you can accidently run multiple instances of the InfluxDB with this method; you can check that none is running with:
ps -A | grep influxd
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Métoule |
