且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在 Windows 中使用命令提示符在不同的端口而不是 8080 上启动 jenkins?

更新时间:2023-01-17 21:50:23

在命令提示符下使用以下命令:

Use the following command at command prompt:

java -jar jenkins.war --httpPort=9090

如果您想使用 https,请使用以下命令:

If you want to use https use the following command:

java -jar jenkins.war --httpsPort=9090

详情在这里