打算用Supervisor来运行Gogs,结果启动的时候报:
supervisor: couldn't chdir to /www/wwwroot/gogs/: EACCES
supervisor: couldn't chdir to "/www/wwwroot/gogs/": ENOENT
后来找到问题是
注意一定要配environment, 不然会报错gogs: ERROR (spawn error) , 因为supervisor 不会读取/etc/profile加载的数据
解决方案:
[program:gogs]
user=root
environment=HOME="/root",USER="root"
网友评论