更改 Jetbrain Upsource 的端口

Change port of Jetbrain Upsource

首先,我用谷歌搜索了这个问题,但找不到任何东西。

问题: 安装时,我将 port 更改为 8081。但现在它被另一个应用程序使用了。那么,有什么办法可以改变 upsource 的端口吗? (Linux)

您可以从终端运行执行以下操作:

./bin/upsource.sh configure --listen-port 1111 --base-url http://servername:1111/

将“1111”替换为您要使用的端口,并将 'servername' 替换为您为 upsource 选择的 baseurl(在我的例子中,这是我的机器的名称)。

来源:https://www.jetbrains.com/help/upsource/2.5/moving-your-upsource-installation-to-another-server.html

这是正确的方法。
1. ./bin/upsource.sh stop
2../bin/upsource.sh 配置--base-url=<a href="http://(server-name).com:(port)" rel="noreferrer">http://(server-name).com:(port)</a> --listen-port=(端口)
3. ./bin/upsource.sh start
4.前往http://(server-name).com:(port)

我知道这个问题是 Linux 特定的,但是如果您 运行 在 Windows 上进行 Upsource...@Wassim Seifeddine 的回答中的命令可以修改为以下内容完成 Upsource 的 and/or base-url 端口更新,如下所示:

  1. [upsource-base-path]/bin/upsource.bat stop

  2. [upsource-base-path]/bin/upsource.bat configure --base-url=http://(server-name).com:(port) --listen-port=(port)

  3. [upsource-base-path]/bin/upsource.bat start