Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ewenchou
Last active July 8, 2023 04:36
Show Gist options
  • Star 43 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save ewenchou/be496b2b73be801fd85267ef5471458c to your computer and use it in GitHub Desktop.
Save ewenchou/be496b2b73be801fd85267ef5471458c to your computer and use it in GitHub Desktop.
Run Python script as systemd service
  1. Create a service file like dash_sniffer.service
  2. Put it in /lib/systemd/system/
  3. Reload systemd using command: systemctl daemon-reload
  4. Enable auto start using command: systemctl enable dash_sniffer.service
[Unit]
Description=Dash Button Sniffer
[Service]
Type=simple
ExecStart=/usr/bin/dash_sniffer.py
[Install]
WantedBy=multi-user.target
@thatguycharan
Copy link

thatguycharan commented Dec 4, 2017

I followed the same steps for my program lying on GCP but it didn't work.
I was trying to daemonize a python script made for polling a telegram bot.

@skyway22
Copy link

Well, post the details (service file, script) so others can help.

@tinkerBOY-git
Copy link

try:

ExecStart=/usr/bin/python /usr/bin/dash_sniffer.py

@matthijskooijman
Copy link

Wouldn't it be better to put the file in /etc/systemd/system, rather than in /lib? They are both used, but AFAIK the latter is intended for installed packages, rather than administrator additions.

@crisscrt
Copy link

  • add

#! /usr/bin/python to dash_sniffer.py

  • chmod 777 dash_sniffer.py

@KaranTrivedi
Copy link

chmod 777 chesus crust

@nea89o
Copy link

nea89o commented Apr 22, 2020

We all had that one guy who pulled a sneaky chmod 777 -R / on the server, right?

@ali-aliabadi
Copy link

We all had that one guy who pulled a sneaky chmod 777 -R / on the server, right?

😂😂😂

@AvicennaJr
Copy link

We all had that one guy who pulled a sneaky chmod 777 -R / on the server, right?

Tears 🤣🤣🤣

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment