0

I successfully installed Jenkins 2.121.2 on Windows 10 using installer jenkins.msi. After it, opened http://localhost:8080/ which was expecting to open Jenkins home page but rather I can see following message there -

If you're seeing this, you've successfully installed Tomcat. Congratulations!

enter image description here

Can someone please help help what could have been wrong here and what else I need to do?

Alpha
  • 13,320
  • 27
  • 96
  • 163
  • 1
    You probably have tomcat installed before you installed jenkins so port 8080 is already taken. – Shmuel Oct 03 '19 at 12:00
  • 1
    ` tail -f /var/log/jenkins/jenkins.log` check the logs, jenkins is not running it tomcate or `java -jar -httpPort=8081 jenkins.war` – Adiii Oct 03 '19 at 12:06
  • Yes @Shmuel, that is correct. In this case I think Adiii solution will work. – Alpha Oct 03 '19 at 12:25

1 Answers1

0

tail -f /var/log/jenkins/jenkins.log check logs to verify the actual issue, seems like tomcat is running on port 8080 as mentioned by @Shmuel

You have two option

 java -jar -httpPort=8081 jenkins.war
Adiii
  • 54,482
  • 7
  • 145
  • 148