Once installed, you can run the remote agent by executing the command line obtained in the previous step. This command will look something like the following:
java -jar atlassian-bamboo-agent-installer-2.2-SNAPSHOT.jar http:
You can also choose to run the remote agent with different command line parameters, to change where the remote agent stores its data or suppress the self-signed certificate of the server.
Changing where the remote agent stores its data
|
By default, the remote agent will store its data in a directory called bamboo-agent-home. If you wish to specify a different directory, add the following command line parameter before the JAR file name:
-Dbamboo.home=RemoteAgentHome
where RemoteAgentHome is the path to the Bamboo agent home directory you created in step 1.1.
Your command line will look something like this:
java -Dbamboo.home=RemoteAgentHome -jar atlassian-bamboo-agent-installer-2.2-SNAPSHOT.jar http:
|
Suppressing the self-signed certificate of the server
|
If your Bamboo server uses SSL (https) with a self-signed certificate, you will need to carry out one of the following two options:
- Add the following parameter "-Dbamboo.agent.ignoreServerCertName=true" to the remote agent's command line, for example:
java -Dbamboo.agent.ignoreServerCertName=true -jar atlassian-bamboo-agent-installer-2.2-SNAPSHOT.jar http://bamboo-host-server:8085/agentServer/
Please be aware that this reduces the security of your configuration, as the identity of your Bamboo server will not be authenticated by the remote agent.
- Use the keytool utility to add the self-signed certificate to the trusted certificates in your keystore. This is a more secure option, but is complex to set up. For detailed instructions of how to do this, please refer to the relevant Sun documentation.
|
Running Bamboo without the Remote Agent Supervisor
|
The remote agent supervisor is included in the remote agent JAR bundled with Bamboo. The appropriate remote agent supervisor for the operating system of your remote machine, will be automatically installed when you run the default remote agent start-up command line.
 | The remote agent supervisor cannot be installed on a small number of operating systems (i.e. the remote agent will start without the remote agent supervisor). If the remote agent supervisor fails to install, please check the operated systems list on the remote agent supervisor page. If your operating system is on the list and the remote agent supervisor still fails to install, please raise a support request in the Bamboo project. |
If you need to run the remote agent without running the remote agent supervisor, you can execute the bootstrap version of the remote agent JAR. This JAR will have -bootstrap in the file name, e.g. *atlassian-bamboo-agent-installer-2.2-SNAPSHOT-bootstrap.jar
java -jar atlassian-bamboo-agent-installer-2.2-SNAPSHOT-bootstrap.jar http:
|
Running the remote agent with different start-up commands
|
The remote agent supervisor is executed by default when you run the default remote agent start-up command line. The remote agent supervisor is implemented via a Java Service wrapper. The wrapper allows you to execute a number of general start-up commands when the remote agent is run. These commands are appended to the end of the default remote agent start-up command line,
i.e.
java -jar atlassian-bamboo-agent-installer-2.2-SNAPSHOT.jar \http:
where <wrapper_command> is one of the keywords described below:
- console — runs the remote agent in the foreground, i.e. display all of the commands on the screen. This parameter is used by default.
- start — runs the remote agent in the background, i.e. no commands are displayed on screen.
- stop — stops a remote agent that is running.
- status — (non-Windows OS only) returns the status of the remote agent, e.g. "Remote agent is not running."
- install — installs the files for the remote agent, but does not start it. This will overwrite any changes that have been made to the wrapper.conf file. You may wish to use this option, if you want to customise the remote agent files before starting it.
|
(Windows only) Installing the remote agent as a Windows service
|
The remote agent supervisor is executed by default when you run the default remote agent start-up command line. The remote agent supervisor is implemented via a Java Service wrapper. The wrapper allows you to install or uninstall the remote agent as a service in Windows (i.e. start the Bamboo remote agent automatically when the machine boots). This is done by appending the appropriate wrapper commands to the end of the default remote agent start-up command line,
i.e.
java -jar atlassian-bamboo-agent-installer-2.2-SNAPSHOT.jar http:
where <wrapper_command> is one of the keywords described below:
- installntservice — (Windows only) installs the remote agent as a Windows service.
- uninstallntservice — (Windows only) uninstalls the remote agent as a Windows service.
|