Jenkins Tutorial - Changing Jenkins Port to 80

preview_player
Показать описание
In this tutorial i will show you how to change Jenkins default port to 80 on Linux, this can apply to any port.

Have Jenkins running directly without specifying any ports.

Below HTTPD Configuration were done to change Jenkins port

ProxyRequests Off
AllowEncodedSlashes NoDecode

and modified /etc/sysconfig/jenkins
add in the end of file "JENKINS_ARGS="--prefix=/jenkins" which means that this is the name of folder which added in above httpd.

If you have the selinux enabled then you need to run below commands:

setsebool httpd_can_network_connect true
setsebool httpd_can_network_connect 1

After restarting both Jenkins and HTTPD service you can run below command to be sure that Jenkins new port is active

ps aux | grep -i jenkins
Рекомендации по теме