Reputation: 11
I use Hudson on my computer and I work in a network. The Hudson Url is following: http://192.168.0.73:8080.
I want to change the Hudson URL to 192.168.0.55:8080
.
How can I do it ?
Upvotes: 1
Views: 2500
Reputation: 56
you can change the ip address of the system where hudson is running and can keep this as static.
Upvotes: 0
Reputation: 86
This is configurable through hudson's web interface. Go to the "Configure Hudson" link (after logging into hudson with administrative rights). Then go to the global settings link. hudsonURL is configurable there.
Upvotes: 1
Reputation: 1327744
If 192.168.0.73
is the ip address of your computer (which you can check by typing ipconfig
), then you cannot change it.
The only solution would be to run Hudson (java -jar hudson.war
) from another computer with the IP address 192.168.0.55
.
Upvotes: 0