-
Create the following folder structure in your root project directory: .ebextensions/supervisor
-
Place the supervisor.config under .ebextensions/
-
Place the setup.sh under .ebextensions/supervisor/
-
Run "chmod +x .ebextensions/supervisor/setup.sh"
-
Place the supervisord.conf under .ebextensions/supervisor/
-
Place the supervisor_laravel.conf under .ebextensions/supervisor/
Feel free to update the files according to your needs. You mostly will need to change the command inside the supervisor_laravel.conf file
If you want to check if the supervisor is running, connect to the instance and run "supervisorctl status". If you want stop/kill supervisor run "ps aux | grep "[/]usr/bin/supervisord", get the PID and then run "kill PID_NUMBER"
Hi @Juanperezc and @adityar15. If you are using Amazon Linux 1 (the old one), the env file path is different. I believe it would be:
/opt/elasticbeanstalk/support/envvars
. The best way to check if the path exists is by accessing the EC2, created by the EBS, by SSH, or Instance Connect. To use the Instance Connect (AWS console) or SSH, you will need to add SSH as Input in the Security Group of the EC2.Once you access the Instance, you will also be able to check the logs:
cd /var/log
Consider looking at: cfn-init.log and eb-engine.log
Also, the log
cfn-init-cmd.log
will show the output messages from the files. You will be able to see which was the last command executedOnce you guys find the error message from the logs, I will be able to help you more