SWEAGLE Plugin | Unknown User (joe99000) | Aug 01, 2019 |
How to run the Robot Framework test cases in sequence | Unknown User (anshugarg85) | Jun 28, 2019 |
LamdbaTest Plugin | Unknown User (harshitp) | May 09, 2019 |
Why is Jenkins' SCM polling not detecting changes in the repo? | Unknown User (mmoser) | Apr 12, 2019 |
TestProject Plugin | Unknown User (testproject) | Apr 07, 2019 |
Synchronize Performance Center with Git | Unknown User (danieldanan) | Jan 08, 2019 |
Sofy.ai Plugin | Unknown User (sofy_waqas) | Jan 07, 2019 |
How to reference another project by name | Unknown User (smokris) | Nov 27, 2018 |
Inject environment variable into winrm command | Unknown User (ph2154) | Nov 14, 2018 |
Fyre Cloud Plugin | Unknown User (ahmed_fyre12) | Nov 08, 2018 |
Pipeline How To | Unknown User (kazuhidet) | Sep 20, 2018 |
插件托管 | Unknown User (surenpi) | May 05, 2018 |
Sensedia Api Platform Plugin | Unknown User (denisscapinsensedia) | Apr 09, 2018 |
External documentation | Unknown User (maxbridges) | Aug 09, 2017 |
3 Comments
Unknown User (mmoser)
How can I change the port number that Jenkins listens on after installation?
I installed Jenkins on Windows (it runs as a service). I noticed that there are too many other utilities I use that want to use port 8080, so I would like to run Jenkins on a different port.
Changing the URL under http://localhost:8080/configure → Jenkins Location → Jenkins URL to http://localhost:9090 had absolutely no effect. Also after restarting the service it still listens on port 8080.
So, how/where can I adjust that port number?
Unknown User (jburrows)
Unknown User (mmoser) Edit your jenkins.xml file in the installation home.
Example only:
<arguments>-Xrs -Xms768m -Xmx3072m -XX:MaxPermSize=768m -Dhudson.lifecycle=hudson.lifecycle.WindowsServiceLifecycle -jar "%BASE%\jenkins.war" -httpPort=8080</arguments>
change to:
<arguments>-Xrs -Xms768m -Xmx3072m -XX:MaxPermSize=768m -Dhudson.lifecycle=hudson.lifecycle.WindowsServiceLifecycle -jar "%BASE%\jenkins.war" -httpPort=9090</arguments>
John
Unknown User (mmoser)
Thanks!