You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After running sudo supervisorctl update, got error like this:
supervisor: couldn't chdir to ~/coding/jolin: ENOENT
supervisor: child process was not spawned
supervisor: couldn't chdir to ~/coding/jolin: ENOENT
supervisor: child process was not spawned
supervisor: couldn't chdir to ~/coding/jolin: ENOENT
supervisor: child process was not spawned
supervisor: couldn't chdir to ~/coding/jolin: ENOENT
supervisor: child process was not spawned
How reproduce
jolin.conf
[program:jolin]
command=poetry run fastapi run --workers=1 --port=9170
user=wenping
directory=~/coding/%(program_name)s
stdout_logfile=/home/wenping/coding/%(program_name)s/supervisor.log
numprocs=1
autostart=true
startsecs=10
autorestart=true
startretried=3
redirect_stderr=true
stdout_logfile_maxbytes=20MB
stdout_logfile_backups=20
As noted at the top of the example config file, supervisord does not support the shell expansion ~. Change the configuration file to remove ~ from this path.
Error detail
After running
sudo supervisorctl update
, got error like this:How reproduce
The text was updated successfully, but these errors were encountered: