EB Worker deployment error Var/Pid

0

I'm trying to deploy a python script in a worker env in Elastic Beanstalk. The code runs fine on my local environment, and has run on a couple of occasions in EB. The problem is that now when I try to create and deploy a new worker, or update one, I get this error : ERROR] An error occurred during execution of command [app-deploy] - [Track pids in healthd]. Stop running the command. Error: "update processes [worker nginx cfn-hup healthd sqsd] pid symlinks failed with error read pid source file /var/pids/worker.pid failed with error:open /var/pids/worker.pid: no such file or directory". Any ideas on why I'm getting this error? As I mention earlier my code has worked as is in AWS EB before. Thank you.

paganof
已提问 1 年前901 查看次数
1 回答
3

Double-check that the worker configuration file (.ebextensions/01-worker.config) contains the correct command to start the worker process, and that the pidfile option is set to /var/pids/worker.pid.

option_settings:
  aws:elasticbeanstalk:worker:python:
    command: "worker.py"
    pidfile: "/var/pids/worker.pid"

Check the worker logs (located at /var/log/eb-worker.log) to see if there are any errors or exceptions being raised that could prevent the worker process from starting or writing to the pid file. Ensure that the worker process has write permissions to the /var/pids directory.

container_commands:
  01_change_pids_permission:
    command: "chmod 777 /var/pids"

If none of the above steps work, try restarting the environment to see if that resolves the issue.

eb restart
profile picture
专家
已回答 1 年前
  • Thank you sdtslmn for the answer. My config file didn't had the pidfile parameter. I will add that, set the permissions and restart to see if it solves the issue.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则