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
asked a year ago777 views
1 Answer
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
EXPERT
answered a year ago
  • 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.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions