修改Ubuntu下的jenkins端口号

安装Jenkins到Ubuntu server推荐采用官方文档描述的方法:

很快就可以使用了。而且这种方法能够方便的升级到最新版本。不过端口号是8080,我的另一个程序用到了8080,怎么修改呢?

网上一些方法介绍通过nginx或者apache将80端口映射到8080, 还有人说用iptables, 这都是间接迂回。我就是不想让jenkins占用8080端口。

通过检查/etc/init.d/jenkins脚本,发现其实就需要做两步:

1. 修改do_start函数的check_tcp_port命令,端口号从8080换成8082

#                                                                                                                                                                                                                   
# Function that starts the daemon/service                                                                                                                                                                           
#                                                                                                                                                                                                                   
do_start()
{
    # the default location is /var/run/jenkins/jenkins.pid but the parent directory needs to be created                                                                                                             
    mkdir `dirname $PIDFILE` > /dev/null 2>&1 || true
    chown $JENKINS_USER `dirname $PIDFILE`
    # Return                                                                                                                                                                                                       
    #  0 if daemon has been started                                                                                                                                                                               
    #  1 if daemon was already running                                                                                                                                                                             
    #  2 if daemon could not be started                                                                                                                                                                           
    $DAEMON $DAEMON_ARGS --running && return 1

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/19707.html