AWS Codedeploy failing to deploy on EC2 without any error logs

365 Views Asked by At

I am deploying a spring boot jar in a EC2 instance from code pipeline using code build and deploy. CodeBuild is working fine and the artifact is getting uploaded in S3.

When the CodeDeploy starts, it will be in process for 2-3 mins and fail in the fist step. with this error

enter image description here

this is the error description

enter image description here CodeDeploy service is running fine and all the other setup looks good. Also not seeing any logs in CodeDeploy logs in EC2. please help out on identifying the issue.

Here is my appspec file

version: 0.0
os: linux
files:
- source: /
  destination: /home/ec2-user
hooks:
  AfterInstall:
  - location: fix_previleges.sh
    timeout: 300
    runas: root
  ApplicationStart:
  - location: start_server.sh
    timeout: 300
    runas: root
  ApplicationStop:
  - location: stop_server.sh
    timeout: 300
    runas: root

0

There are 0 best solutions below