Troubleshooting Remote Agents
プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Fisheye および Crucible は除く
要約
Technical Overview of Remote Agent Connectivity Mechanism
- The remote agent and server communication is done through HTTP and JMS protocols, on top of separate unicast TCP connections.
- The remote agent and server communication is bi-directional, and the remote agent initiates both TCP connections.
- Remote agents use the HTTP protocol while bootstrapping and registering against Bamboo.
- Artifacts are also transferred using the HTTP protocol.
The JMS protocol is used for other communications (such as dispatching jobs, heartbeat messages, etc) together with the Apache ActiveMQ (AMQ) message broker.
This article discusses Troubleshooting Remote Agents (secure and unsecured). For information on how to secure remote agents, please go to Securing your remote agents.
HTTP Connection
The remote agent normally connects to Bamboo using the same URL used for general user access.
Examples of addresses | ポート | Context path (not mandatory) | プロトコル |
---|---|---|---|
http://<bamboo.hostname>:8085/agentServer/ | 8085 | <empty> | http |
https://<bamboo.hostname>/bamboo/agentServer/ | 443 | bamboo | HTTPS |
http://<bamboo.hostname>/bamboo/agentServer/ | 80 | bamboo | http |
JMS Connection
This connection will be established to the address configured in the <bamboo-local-home>/bamboo.cfg.xml file. There are two properties defined here:
プロパティ | 説明 |
---|---|
bamboo.jms.broker.client.uri | The broker client URI is the address distributed to the agents. This is the endpoint they will attempt to connect to. |
bamboo.jms.broker.uri | The broker URI is the address Bamboo will use to bind the primary JMS connector.
|
- Any changes to these properties will require a Bamboo restart.
- The address should NOT be set to localhost. Ideally, the agent should reach the server directly to its IP or hostname. If a reverse proxy address is set here, please ensure the proxy is correctly configured to redirect the broker TCP traffic.
- Bamboo also spins up two additional JMS connectors to handle SSL and elastic agent traffic. Bamboo looks at the primary JMS connector port number to determine the port numbers it will use for the additional connectors. This is the formula used by Bamboo:
- SSL JMS connector = primary JMS connector port number + 1. If the primary JMS connector is 54663, then Bamboo will use 54664 for the SSL JMS connector.
- Elastic agents JMS connector = primary JMS connector port number + 2. If the primary JMS connector is 54663, then Bamboo will use 54665 for the elastic agents JMS connector. This connector is bound to localhost, by default.
Examples of addresses | ポート | プロトコル |
---|---|---|
tcp://<bamboo.hostname>:54663 | 54663 | TCP (JMS) |
ssl://<bamboo.hostname>:54664 | 54664 | TCP (JMS - secure) |
nio://<bamboo.hostname>:54663 | 54663 | TCP (JMS - buffered TCP) |
診断
The commands below can be used for primary connectivity checks and should succeed if the correct addresses and ports are used.
Agent-side checks | コマンド | 例 | 関連記事 |
---|---|---|---|
| ping <Server_Hostname> | ping my.bamboo.url | |
| telnet <Server_Hostname> <HTTP_Port> | telnet my.bamboo.url 8085 | |
| ping <Server_Hostname or IP_address> | ping 192.168.10.10 | |
| telnet <Server_Hostname or IP_address> <JMS_Port> | telnet 192.168.10.10 54663 | |
Server-side checks | コマンド | 例 | |
| ping <Server_Hostname or IP_address> | ping bamboo.hostname | |
| Windows: netstat -an | findstr <HTTP_Port> | netstat -an | findstr 8085 netstat -an | grep 8085 | |
| Windows: netstat -an | findstr <Broker_Port> Unix Like: netstat -an | grep <Broker_Port> | netstat -an | findstr 54663 netstat -an | grep 54663 |
Increasing debug logging
You'll find instructions on how to enable debug logging for Bamboo and/or agents inside the following page:
ソリューション
Bamboo with a reverse proxy
If Bamboo is running behind a reverse proxy and the remote agent is having trouble connecting with Bamboo (in the first stages of connection - using HTTP protocol) or experiencing artifact transfer problems, it might be worth bypassing the proxy to check if it could be causing the issue. The following document can be used for this purpose:
Other common causes for connectivity issues
Some common reasons for port and socket connectivity issues include:
- Firewalls
- Antivirus
- Forward proxies
Please check the above to see if any are interfering or blocking required ports and connections.