Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Customizing URL in Jenkins

Tags:

url

dns

I've created Jenkins for managing my project. I want to share these files with a few people. Problem is that URL is http://localhost:8080/ . How can I make it public for my co-workers (I want it public like this side)? I know there is "Jenkins URL" setting in configuration, but when I'll put URL there the page doesn't exist. Any ideas how to do it? (I'm beginner with this stuff so could you explain it to me? thx)

I'm using W7 x64

like image 678
Bukk94 Avatar asked Mar 23 '15 11:03

Bukk94


1 Answers

You need 2 things at first:

  1. You need to have an static external IP address. Either your network admin or your ISP should provide you with one.

  2. Once you have the IP, you need to register a DNS name, and point to that IP address.

Alternatively, if you cannot get a static external IP address, you can use a Dynamic DNS (DDNS) service, however you need to make sure your IP address is accessible externally

  1. Find out your external IP address (probably in your router configuration).
  2. Make sure your router and/or firewall allow external traffic to your Jenkins port (8080)
  3. Register on some free DDNS server, such as http://www.noip.com/free
like image 137
Slav Avatar answered Nov 15 '22 08:11

Slav