I recently installed Jenkins 2.479.2
on MacOS Sequoia (15.1). The service is working fine on http://localhost:8080
, but it can not be accessed from any other devices at my home.
This post provided solutions to fix that issue. Here is a summary:
- Make sure the MacOS firewall is disabled, or the port is enabled on the firewall.
- Replace
127.0.0.1
with0.0.0.0
in the file/opt/homebrew/opt/jenkins-lts/homebrew.mxcl.jenkins-lts.plist
. - Restart the Jenkins service with
brew services restart jenkins-lts
.- You can use the command to restart other brew installed services. Use
brew services info --all
to list all available services.
- You can use the command to restart other brew installed services. Use
Leave a Reply