I was wondering how one could change Jenkins\' default port 8080. Using linux or windows, this is simply done with the configuration file. But the Mac config file of Jenkins
I have installed Jenkins on my Mac OS High Sierra using Brew.
Please follow below steps:
/usr/local/Cellar/jenkins/2.x.x/homebrew.mxcl.jenkins.plist
Assign any free port like 7070 or any number you want.[If you have static IP then you can give port 80(HTTP)]
--httpPort=7070
You also need to restart the Jenkins Server. using below brew service commands:
$ brew services stop jenkins
$ brew services start jenkins
That's all.!