我想在Ubuntu中啓動一個簡單的守護進程,它將每5秒將當前時間寫入日誌文件。Ubuntu中的簡單守護進程
start-stop-daemon --start --user root --make-pidfile --pidfile /home/manjesh/test.pid --exec /home/manjesh/simplescript.sh
simplescript.sh
#!/bin/bash
echo $(date)" SNMP Monitoring and Log aggregator service " >> /home/manjesh/log.txt
while true
do
echo $(date) >> /home/dcae/snmp-service/log
sleep 5
done
當我執行它說命令「沒有這樣的文件或目錄,即使該文件確實存在」
任何幫助將不勝感激。謝謝。
'/ home/dcae/snmp-service'目錄是否存在? – eddiem
您正在使用的所有腳本和目錄是否存在並具有適當的權限? – AlG
它說哪個文件不存在?另外,即使該文件確實存在於錯誤消息中,或者您是否將引號錯誤? – Barmar