Ishan Patil
Ishan Patil

Reputation: 1

AWS EC2 instance not connecting to Jenkins

I am trying to connect AWS EC2 instance to jenkins server but the public ip address is not loading. i have also added inbound rules on port 8080 but the problem is same. enter image description here enter image description here

I added security group in inbound rules but the problem is same

Upvotes: 0

Views: 278

Answers (2)

aloknayak
aloknayak

Reputation: 11

  • Verify your Jenkins is running on EC2

    systemctl status jenkins

  • Then try allowing all traffic in the security group inbound rule and check.

  • Try restarting the Jenkins systemctl restart jenkins

Upvotes: 0

Mohd sabir
Mohd sabir

Reputation: 26

  • Verify your Jenkins is running on EC2 using the below command
    systemctl status jenkins
    
  • if your Jenkins is running hope you are accessing with URL:
    http://<public_ip:8080 
    

Upvotes: 1

Related Questions