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
gefragt vor einem Jahr899 Aufrufe
1 Antwort
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
EXPERTE
beantwortet vor einem Jahr
  • 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.

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen