파이썬 자동 서비스
1. systemd 서비스 파일 생성
systemd 서비스 파일 생성: /etc/systemd/system/monitor_py.service
파일을 만듭니다.
[Unit]
Description=Python Monitor Script
After=network.target
[Service]
Type=simple
ExecStart=/bin/bash /root/_TION/_______API/_monitor_PY.sh
Restart=always
[Install]
WantedBy=multi-user.target
2. 서비스 활성화 및 시작
sudo systemctl daemon-reload
sudo systemctl enable monitor_py.service
sudo systemctl start monitor_py.service
이렇게 파이썬 자동 서비스를 만들어서 중복없이 자동으로 한다.
목차