0
我有我想在背景中泊塢窗容器啓動一個後臺程序服務的一個簡單的Python腳本sbin目錄/啓動停止守護進程無法啓動蟒蛇 - Ubuntu的搬運工集裝箱
/sbin/start-stop-daemon --start --user root --make-pidfile --pidfile /var/lock/subsys/my-application.pid --exec 'python /opt/app/uc/monitor/bin/my-application.py'
當我執行這個命令在shell我得到
/sbin/start-stop-daemon: unable to stat //python /opt/app/uc/monitor/bin/my-application.py (No such file or directory)
然而,當在外殼只執行下面的命令,它的工作原理
python /opt/app/uc/monitor/bin/my-application.py
我確定安裝了python,並且所有鏈接都已經安裝。
感謝您的幫助
碼頭工人是不是虛擬機。沒有暴發戶,因此沒有啓動守護進程。如果必須,請檢查runit或supervisor。或者你可以堅持一個過程/一個容器的「最佳實踐」。 – user2105103
我想到並創建了一個啓動腳本... – Manjesh