简体   繁体   中英

Unable to launch the Jenkins console which is running on Linux box

I just pulled the Jenkins image from docker hub by using below command.

sudo docker pull jenkins

sudo docker run -p 7071:7071 -p 50000:50000 jenkins this command help me to run the jenkins image inside the docker container 在此处输入图像描述

Now the problem is that I just want to run the Jenkins console to create a some sample test jobs. When I tried to access this from some windows machine I'm not able to connect and It returned 404 error code.

Tried to connect the Jenkins from Windows machine.

http://<ip address>:7071  -> this is failing to connect.
http://<ip address>:50000  -> This returning the Jenkins Agent Protocol details

Output:

Jenkins-Agent-Protocols: JNLP-connect, JNLP2-connect, JNLP4-connect, Ping Jenkins-Version: 2.60.3 Jenkins-Session: cba34bd8 Client: XXXXXXXX Server: YYYYYYYY

Can someone help me since I'm new to docker + jenkins world and want to know how to connect the dockerized jenkins that is hosted in the Linux box.

Thanks in advance.

The main port used by Jenkins for access via the web console is 8080 and so add:

docker run ... -p 8080:8080

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM