我怎样才能运行主管?

我怎样才能运行主管?

我想使用supervisor重新启动我的python脚本:

/home/用户名/prog/test.py

import time
while True:
    print('I am alive.')
    time.sleep(1)

我的配置文件:

/etc/supervisor/conf.d/testapp.conf

[program:testapp]
command=/usr/bin/python3 /home/username/prog/test.py > output.txt
autostart=true
autorestart=true
stderr_logfile=/home/username/prog/long.err.log
stdout_logfile=/home/username/prog/long.out.log

但是 output.txt 是空的..

所有权限均正常。

相关内容