宝塔商店安装好supervisor后,使用supervisorctl会提示command not found。
是因为默认并没有软连接。需要手动做个软连接
ln -s /www/server/panel/pyenv/bin/supervisorctl /usr/bin/supervisorctl
这样再使用supervisorctl命令就可以直接使用了
配置文件可适用下面的
[program:movie_t_cdn]
command=dotnet MovieT.Cdn.dll --urls=http://*:8103
directory=/www/wwwroot/movie_t_cdn/
autorestart=true
startsecs=3
startretries=3
stdout_logfile=/www/server/panel/plugin/supervisor/log/movie_t_cdn.out.log
stderr_logfile=/www/server/panel/plugin/supervisor/log/movie_t_cdn.err.log
stdout_logfile_maxbytes=2MB
stderr_logfile_maxbytes=2MB
user=root
priority=999
numprocs=1
process_name=%(program_name)s_%(process_num)02d