AppDynamics Application Intelligence Platform
3.9.x Documentation
To access the AppDynamics software downloads, sign up for an account on www.appdynamics.com. After signing up, you can start a trial of AppDynamics Pro.
The AppDynamics Download Center (http://download.appdynamics.com) has the complete set of software components for download, including access to older versions.
AppDynamics Software Component | Description | SaaS | On-Premise |
---|---|---|---|
Controller | Central management server where all data is stored and analyzed. | N/A | Required |
Java App Server Agent | Instrumentation Agent for Java virtual machines. | Required for Java | Required for Java |
.NET App Server Agent | Instrumentation Agent for .NET Common Language Runtime (CLR). | Required for .NET | Required for .NET |
PHP Agent | App agent for PHP installations. | Required for PHP | Required for PHP |
Machine Agent | Collects hardware performance metrics and can be installed on any machine in your environment. | Optional | Optional |
GeoServer | For End User Management. See Customize Your Web EUEM Deployment. | Optional | Optional |
Always copy or transfer the downloaded files in binary mode. If you have downloaded a binary on Windows, and you are moving it to a Unix environment, the transfer program must use binary mode.
For each file you download, verify that the download is complete and that the file is not corrupted. Run a checksum tool and compare the results against the checksum information on the download site.
To download AppDynamics software from a Linux shell, you can use the wget utility or cURL.
When using these tools, you first need to authenticate to the AppDynamics domain and store the resulting session ID in a file. Next, send the request to download the software, passing the session information file as a cookie.
For example, on Fedora you can use the following wget commands:
wget --save-cookies cookies.txt --post-data 'username=<USERNAME>&password=<PASSWORD>' https://login.appdynamics.com/sso/login/
wget --content-disposition --load-cookies cookies.txt '<URL_TO_FILE>'
On the Windows platform add the --no-check-certificate option.
The equivalent cURL commands are:
curl -c cookies.txt -d 'username=<USERNAME>&password=<PASSWORD>' https://login.appdynamics.com/sso/login/
curl -O -b cookies.txt <URL_TO_FILE>
You can discover the URL for the file to download at the AppDynamics Download Center. If you need help retrieving the <URL_TO_FILE> value, you can supplement your download process by using two APIs to help programmatically download AppDynamics software. After getting your cookie information, use the Version List API, which will return a JSON of all available versions and when they were made publicly available. Then, after finding your version, you can list all available products for that version with the Download File List API. Find the "download_path" value within the response and add it to the curl command.