1. 使用systemctl來控制啟動
這個方法比較好用,很方便
sudo vim /lib/systemd/system/frps.service
在frps.service裡寫入以下內容
[unit]
description=fraps service
after=network.target syslog.target
wants=network.target
[service]
type=******
#啟動服務的命令(此處寫你的frps的實際安裝目錄)
execstart=/your/path/frps -c /your/path/frps.ini
[install]
wantedby=multi-user.target
然後就啟動frps
sudo systemctl start frps
再開啟自啟動
sudo systemctl enable frps
如果要重啟應用,可以這樣,sudo systemctl restart frps
如果要停止應用,可以輸入,sudo systemctl stop frps
如果要檢視應用的日誌,可以輸入,sudo systemctl status frps
程序後台啟動方法
1.忽略hup命令 hup 1 終端斷線 可用 nohup guard 重定向輸出檔名 2.將程序id設定為不在hup命令管轄範圍。setsid 呼叫setsid函式的程序成為新的會話的領頭程序,並與其父程序的會話組和 程序組 脫離。由於會話對控制終端的獨占性,程序同時與控制終端脫離,其程序父程序為...
flume後台啟動
flume一直是用 bin flume ng agent n agent c conf f conf flume.properties dflume.root.logger debug,console這種方式啟動的,但是總是報錯,而且日誌列印在控制台,還沒怎麼著呢就刷過去了,實在不方便了,查到一種後...
redis如何後台啟動的方法
當安裝好redisbitryxj之後,執行redis server命令之後,顯示如圖所示 但是這樣沒有辦法在這個tab下做任何操作了,因為這個時候使用ctrl c之後,就變成了這個樣子 然後就關閉了,那麼我想讓redis在後台啟動怎麼辦呢?在安裝redis之後,我們可以可以找到乙個叫redis.co...