[Jenkins] 9. Problem Solving
(1.) When your Jenkins service is already loaded, but your cant load localhost:8080 page to run Jenkins

Solutions: 1. You may not have permission of Jenkins log, use below commands to change the permissions of Jenkins log
sudo chown -R otis /var/log/jenkins
2. You may not have Java installed, use below commands to check your Java version
java -version
3. Reset your Jenkins port
sudo defaults write /Library/Preferences/org.jenkins-ci httpPort 8080
sudo launchctl unload /Library/LaunchDaemons/org.jenkins-ci.plist
sudo launchctl load /Library/LaunchDaemons/org.jenkins-ci.plist
Previous8. Jenkins PluginsWas this page helpful?Let us know how we did
Last updated