美文网首页
Supervisor报spawn error错误

Supervisor报spawn error错误

作者: 奇奇又怪怪 | 来源:发表于2022-06-01 14:25 被阅读0次

打算用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"

相关文章

网友评论

      本文标题:Supervisor报spawn error错误

      本文链接:https://www.haomeiwen.com/subject/toexmrtx.html