-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated scripts for python start of services
- Loading branch information
Showing
7 changed files
with
22 additions
and
4 deletions.
There are no files selected for viewing
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
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
pip3 install -r requirements.txt | ||
rm config.json | ||
mv config-local.json config.json | ||
sudo cp influx_mqtt.service /lib/systemd/system/ | ||
sudo chmod 644 /lib/systemd/system/influx_mqtt.service | ||
sudo chmod +x influx_client.py | ||
sudo systemctl daemon-reload | ||
sudo systemctl enable influx_mqtt.service | ||
sudo systemctl start influx_mqtt.service |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
pip3 install -r requirements.txt | ||
rm config.json | ||
mv config-local.json config.json | ||
sudo cp thread_tags.service /lib/systemd/system/ | ||
sudo chmod 644 /lib/systemd/system/thread_tags.service | ||
sudo chmod +x thread_tags.py | ||
sudo systemctl daemon-reload | ||
sudo systemctl enable thread_tags.service | ||
sudo systemctl start thread_tags.service |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
docker-compose -f docker-compose-thread.yml -d up | ||
./py/influx/install.sh | ||
./py/thread_tags/install.sh |