Change the port Bitbucket listens on
You can change the port that Bitbucket Data Center and Server listens on from the default '7990
' to a different value if another application is already running on that port.
netstat を使用して空いているポートを特定できます。
To change the port Bitbucket listens on
- Navigate to your home directory.
Open the
shared/bitbucket.properties
file, add thesever.port
property (or edit it if a line for theserver.port
property already exists), and set the value to the port number Bitbucket will run on. For example, to set to the port to8080
you would add:server.port=8080
ファイルを保存します。
Restart Bitbucket so the change takes effect. See Start and stop Bitbucket.
重要な考慮事項
ファイアウォールを使用している場合、選択したコネクタ ポート経由の HTTP または HTTPS トラフィックを許可するように構成されていることを確認します。
If you are running Bitbucket on a Linux server and want to bind to privileged ports (those below 1024, for example port 80), you will need to start Bitbucket as root to successfully bind to the port. However; we don't recommend that you start Bitbucket as root and instead do one of the following:
- Bind Bitbucket to a port over 1024 and configure a load balancer in front of the server to redirect traffic from port 80 to the higher port. Learn more about load balance configuration options
- Bind Bitbucket to a port over 1024 and configure
iptables
to redirect traffic from port 80 to the higher port - Use
setcap
to allow privileged port access forjava
processes. For more information, see Running Bitbucket Server on a privileged port without root