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

后端 未结 5 901
闹比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:15

    the error info indicate your app "app_name" may read or write a file which has no privileges.

    has you started supervisord with root, then switched to a specific user? in this case, you may create file in your "app_name" with owner of root, but the specific user may not have the right privileges.

提交回复
热议问题