- Download the Jenkins war (LTS) file from https://www.jenkins.io/download/
- Setup JDK 11+ and set java to the path environment variable.
- Set JENKINS_HOME to any directory
- Run >java -jar jenkins.war
- Access Jenkins Server @ http://localhost:8080
Provide Administrator password, generated at highlight path above.

Proceed with 'Install suggested plugins.
Steps to open firewall port to access Jenkins server.
YOURPORT=8080
SERV="$PERM --service=jenkins"
firewall-cmd $PERM --new-service=jenkins
firewall-cmd $SERV --set-short="Jenkins ports"
firewall-cmd $SERV --set-description="Jenkins port exceptions"
firewall-cmd $SERV --add-port=$YOURPORT/tcp
firewall-cmd $PERM --add-service=jenkins
firewall-cmd --zone=public --add-service=http --permanent
No comments:
Post a Comment