Jenkins 在不同的端口而不是 Ubuntu 中的 8080

Jenkins on different port rather than 8080 in Ubuntu

我看到更改 Jenkins HTTP 端口的选项是在 Jenkins 启动时传递 --httpPort=$HTTP_PORT 。在 Ubuntu 默认安装中,Jenkins 在启动时作为守护进程启动。在 Ubuntu 中的什么位置设置 -httpPort?

检查 /etc/default/jenkins - 它适用于 Debian,我想它在 Ubuntu

上也是一样的

Installing jenkins on ubuntu

文件中DAEMON_ARGS后添加如下两行

/etc/init.d/jenkins

HTTP_PORT=8010  <br/>
JENKINS_ARGS="--httpPort=$HTTP_PORT"