环境:Ubuntu 16.04.2 Core2.0
使用Supervisor 做守护进程时,error log输出内容如下。请问该如何处理?
supervisor: couldn't chdir to /home/site/pulish: ENOENT
配置信息如下:
[program:TestCore]
command=dotnet TestCore.dll
directory=/home/site/pulish
autostart=true
autorestart=true
stderr_logfile=/var/log/TestCore.err.log
stdout_logfile=/var/log/TestCore.out.log
environment=ASPNETCORE_ENVIRONMENT=Production
user=root
stopsignal=INT
慕雪6442864