Unable to start service with nohup due to 'INFO spawnerr: unknown error making dispatchers for 'app_name': EACCES'

后端 未结 5 896
闹比i
闹比i 2021-02-13 17:44

I\'m trying to start a service with supervisor, but I get an error saying

INFO spawnerr: unknown error making dispatchers for \'app_name\': EACCES

5条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-13 18:09

    The problem is the permission for the log file With the user running supervisor you can create a "logs" folder in the same path of the supervisord.conf file and change:

    logfile=/tmp/supervisord.log
    

    to

    logfile=logs/supervisord.log
    

提交回复
热议问题