Linux下設置python腳本文件爲服務

(最簡單的方式nohup python xxx.py)python

-------------------------------------------------------------------------------------------------------------------linux

Python腳本開機自動運行;本帖適用於使用systemd的Linux系統,如今流行的Linux發行版都使用systemd。vim

後臺服務程序是隨系統自啓動的,咱們只要把Python腳本配置爲服務就好了。須要注意的一點是你Python腳本的啓動時機,它依賴不依賴其餘服務(網絡鏈接、一些分區的掛載等等)。sublime-text

 

#1 Python腳本

一個你要自啓動的Python腳本,我使用 /home/snail/autorun.py爲例。網絡

#2 建立Unit配置文件

 

寫入以下內容:tcp

上面定義了一個叫 Test Service 的服務,它在multi-user環境起來以後運行;ExecStart參數指定咱們要運行的程序;idle確保腳本在其餘東西加載完成以後運行,它的默認值是simple。spa

注意使用絕對路徑。.net

爲了得到腳本的輸出信息,咱們能夠重定向到文件:rest

更改配置文件的權限:code

 

#3 使配置文件生效

 

 

#4 重啓

 

 

#5 查看服務狀態

 

Python腳本開機自啓動(Linux)

 

Python腳本開機自啓動(Linux)

 

 

#6 服務操做命令

systemctl命令是系統服務管理器指令,它實際上將 service 和 chkconfig 這兩個命令組合到一塊兒。

任務 舊指令 新指令
使某服務自動啓動 chkconfig --level 3 httpd on systemctl enable httpd.service
使某服務不自動啓動 chkconfig --level 3 httpd off systemctl disable httpd.service
檢查服務狀態 service httpd status systemctl status httpd.service (服務詳細信息) systemctl is-active httpd.service (僅顯示是否 Active)
顯示全部已啓動的服務 chkconfig --list systemctl list-units --type=service
啓動某服務 service httpd start systemctl start httpd.service
中止某服務 service httpd stop systemctl stop httpd.service
重啓某服務 service httpd restart systemctl restart httpd.service

實例

1.啓動nfs服務

systemctl start nfs-server.service

2.設置開機自啓動

systemctl enable nfs-server.service

3.中止開機自啓動

systemctl disable nfs-server.service

4.查看服務當前狀態

systemctl status nfs-server.service

5.從新啓動某服務

systemctl restart nfs-server.service

6.查看全部已啓動的服務

systemctl list -units --type=service

開啓防火牆22端口

iptables -I INPUT -p tcp --dport 22 -j accept

若是仍然有問題,就多是SELinux致使的

關閉SElinux:

修改/etc/selinux/config文件中的SELINUX=」」爲disabled,而後重啓。

完全關閉防火牆:

sudo systemctl status firewalld.service
sudo systemctl stop firewalld.service          
sudo systemctl disable firewalld.service
相關文章
相關標籤/搜索