Last active
November 25, 2023 19:32
-
-
Save ysdede/a7f878f51fb9f4d84a7607d11996e182 to your computer and use it in GitHub Desktop.
InfluxDB 2.x Open Source Time Series Database on wsl2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget -qO- https://repos.influxdata.com/influxdb.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdb.gpg > /dev/null | |
export DISTRIB_ID=$(lsb_release -si); export DISTRIB_CODENAME=$(lsb_release -sc) | |
echo "deb [signed-by=/etc/apt/trusted.gpg.d/influxdb.gpg] https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list > /dev/null | |
sudo apt-get update && sudo apt-get install influxdb2 | |
sudo chmod +x /etc/init.d/influxdb | |
sudo chown root:root /etc/init.d/influxdb | |
sudo update-rc.d influxdb defaults | |
sudo update-rc.d influxdb enable | |
sudo service influxdb start |
Hi you need influxdb init.d script as a user mentioned. https://gist.github.com/ysdede/a7f878f51fb9f4d84a7607d11996e182?permalink_comment_id=4048704#gistcomment-4048704
I am posting my init.d script form my wsl. I hope it helps.
https://gist.github.com/ysdede/124d629bc0fa1f92f8c9a529b68c557b
Thanks, it's running
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi you need influxdb init.d script as a user mentioned. https://gist.github.com/ysdede/a7f878f51fb9f4d84a7607d11996e182?permalink_comment_id=4048704#gistcomment-4048704
I am posting my init.d script form my wsl. I hope it helps.
https://gist.github.com/ysdede/124d629bc0fa1f92f8c9a529b68c557b