How to Run, Install, Start, and Stop Atlassian Bamboo Remote Agents
Managing your Atlassian Bamboo Remote Agents can be a breeze once you understand the initial setup and the commands needed to control the service. Let’s dive into the process of getting your agent up and running and explore how to manage it effectively. Initial Run and Setup Scripts When you run your agent for the first time, it generates control scripts to handle the installation and service management. To start the agent, use the following command, making sure to replace <Bamboo Base URL> with your Bamboo server’s base URL: java [parameters] -jar atlassian-bamboo-agent-installer- X . X - SNAPSHOT . jar < Bamboo Base URL >/agentServer/ [console] Stopping the Agent There might be times when you need to stop your remote agent. To do this, you can identify the process and force it to terminate using the following commands: ps aux | grep -i bamboo | awk '{print $2}' | xargs kill - 9 Installation Directory Move to the directory where the Bamboo agen...