|
| 1 | +--- |
| 2 | +title: Install Dynatrace ActiveGate on Azure Ubuntu Arm64 virtual machine |
| 3 | +weight: 6 |
| 4 | + |
| 5 | +### FIXED, DO NOT MODIFY |
| 6 | +layout: learningpathall |
| 7 | +--- |
| 8 | + |
| 9 | +## Install Dynatrace ActiveGate on Azure Ubuntu Arm64 |
| 10 | + |
| 11 | +Dynatrace ActiveGate acts as a **secure gateway between monitored environments and the Dynatrace SaaS platform**. |
| 12 | +It improves scalability, enables Kubernetes monitoring, and routes monitoring traffic efficiently. |
| 13 | + |
| 14 | +In this guide, you'll install Dynatrace ActiveGate on an **Azure Ubuntu 24.04 LTS Arm64 virtual machine running on Azure Cobalt 100 processors**. |
| 15 | + |
| 16 | +At the end of the installation, ActiveGate will be: |
| 17 | + |
| 18 | +* Installed and running as a system service |
| 19 | +* Listening on port **9999** for Dynatrace communication |
| 20 | +* Connected to your Dynatrace SaaS environment |
| 21 | +* Verified on **Arm64 (Aarch64)** architecture |
| 22 | + |
| 23 | +## Verify OneAgent installation |
| 24 | + |
| 25 | +ActiveGate is commonly installed on a host that already has **Dynatrace OneAgent** installed. |
| 26 | +This allows ActiveGate to securely route monitoring traffic from OneAgent to the Dynatrace environment. |
| 27 | + |
| 28 | +Verify that OneAgent is running: |
| 29 | + |
| 30 | +```console |
| 31 | +sudo systemctl status oneagent |
| 32 | +``` |
| 33 | + |
| 34 | +If OneAgent is not installed, install it first using the previous guide. |
| 35 | + |
| 36 | +## Log in to Dynatrace |
| 37 | + |
| 38 | +Open your Dynatrace environment in a browser. |
| 39 | + |
| 40 | +```text |
| 41 | +https://<ENVIRONMENT-ID>.live.dynatrace.com |
| 42 | +``` |
| 43 | + |
| 44 | +**Example:** |
| 45 | + |
| 46 | +```text |
| 47 | +https://qzo722404.live.dynatrace.com |
| 48 | +``` |
| 49 | + |
| 50 | +This is your Dynatrace SaaS environment URL. |
| 51 | + |
| 52 | +## Navigate to the ActiveGate deployment page |
| 53 | + |
| 54 | +From the Dynatrace dashboard: |
| 55 | + |
| 56 | +- Select Deployment status |
| 57 | +- Choose ActiveGate |
| 58 | +- Install ActiveGate |
| 59 | + |
| 60 | + |
| 61 | + |
| 62 | +Dynatrace will generate an installation command specifically for your environment. |
| 63 | + |
| 64 | +## Select ARM architecture |
| 65 | + |
| 66 | +On the installer configuration page: |
| 67 | + |
| 68 | +- Platform → Linux |
| 69 | +- Architecture → ARM64 |
| 70 | + |
| 71 | + |
| 72 | + |
| 73 | +This ensures that the installer downloads the Arm64-compatible ActiveGate binaries. |
| 74 | + |
| 75 | +## Copy the ActiveGate installer command |
| 76 | + |
| 77 | +Dynatrace generates a command similar to the following: |
| 78 | + |
| 79 | +**Download ActiveGate:** |
| 80 | + |
| 81 | +```console |
| 82 | +wget -O Dynatrace-ActiveGate-Linux-arm.sh \ |
| 83 | +"https://<ENVIRONMENT-ID>.live.dynatrace.com/api/v1/deployment/installer/gateway/unix/latest?arch=arm" \ |
| 84 | +--header="Authorization: Api-Token <API_TOKEN>" |
| 85 | +``` |
| 86 | + |
| 87 | +Example: |
| 88 | + |
| 89 | +```console |
| 90 | +wget -O Dynatrace-ActiveGate-Linux-arm.sh \ |
| 91 | +"https://qzo72404.live.dynatrace.com/api/v1/deployment/installer/gateway/unix/latest?arch=arm" \ |
| 92 | +--header="Authorization: Api-Token DT_API_TOKEN" |
| 93 | +``` |
| 94 | + |
| 95 | +**Verify signature:** |
| 96 | + |
| 97 | +```console |
| 98 | +wget https://ca.dynatrace.com/dt-root.cert.pem ; ( echo 'Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg="sha-256"; boundary="--SIGNED-INSTALLER"'; echo ; echo ; echo '----SIGNED-INSTALLER' ; cat Dynatrace-ActiveGate-Linux-arm64-1.331.24.20260210-044521.sh ) | openssl cms -verify -CAfile dt-root.cert.pem > /dev/null |
| 99 | +``` |
| 100 | + |
| 101 | + |
| 102 | +**Install ActiveGate as the privileged user:** |
| 103 | + |
| 104 | +```console |
| 105 | +sudo /bin/bash Dynatrace-ActiveGate-Linux-arm64-1.331.24.20260210-044521.sh |
| 106 | +``` |
| 107 | + |
| 108 | +The installer automatically performs the following tasks: |
| 109 | + |
| 110 | +- Downloads ActiveGate components |
| 111 | +- Installs the ActiveGate service |
| 112 | +- Configures communication with Dynatrace SaaS |
| 113 | +- Starts the ActiveGate service |
| 114 | + |
| 115 | +The output is similar to: |
| 116 | +```output |
| 117 | +2026-03-12 05:59:21 UTC Starting Dynatrace ActiveGate AutoUpdater... |
| 118 | +2026-03-12 05:59:21 UTC Checking if Dynatrace ActiveGate AutoUpdater is running ... |
| 119 | +2026-03-12 05:59:21 UTC Dynatrace ActiveGate AutoUpdater is running. |
| 120 | +2026-03-12 05:59:21 UTC Cleaning autobackup... |
| 121 | +2026-03-12 05:59:21 UTC Removing old installation log files... |
| 122 | +2026-03-12 05:59:21 UTC |
| 123 | +2026-03-12 05:59:21 UTC -------------------------------------------------------------- |
| 124 | +2026-03-12 05:59:21 UTC Installation finished successfully. |
| 125 | +``` |
| 126 | + |
| 127 | +## Verify the ActiveGate service |
| 128 | + |
| 129 | +Check that the ActiveGate service is running. |
| 130 | + |
| 131 | +```console |
| 132 | +sudo systemctl status dynatracegateway |
| 133 | +``` |
| 134 | + |
| 135 | +The output is similar to: |
| 136 | +```output |
| 137 | +● dynatracegateway.service - Dynatrace ActiveGate service |
| 138 | + Loaded: loaded (/etc/systemd/system/dynatracegateway.service; enabled; preset: enabled) |
| 139 | + Active: active (running) since Thu 2026-03-12 05:59:07 UTC; 1min 7s ago |
| 140 | + Process: 20280 ExecStart=/opt/dynatrace/gateway/dynatracegateway start (code=exited, status=0/SUCCESS) |
| 141 | +``` |
| 142 | +This confirms that ActiveGate started successfully. |
| 143 | + |
| 144 | +## Verify the ActiveGate communication port |
| 145 | + |
| 146 | +ActiveGate communicates using port 9999. |
| 147 | + |
| 148 | +**Verify that the port is listening:** |
| 149 | + |
| 150 | +```console |
| 151 | +sudo ss -tulnp | grep 9999 |
| 152 | +``` |
| 153 | + |
| 154 | +The output is similar to: |
| 155 | +```console |
| 156 | +tcp LISTEN 0 50 *:9999 *:* users:(("java",pid=20319,fd=403)) |
| 157 | +``` |
| 158 | + |
| 159 | +This confirms that ActiveGate is accepting incoming connections. |
| 160 | + |
| 161 | +## Confirm ActiveGate in Dynatrace UI |
| 162 | + |
| 163 | +Open the Dynatrace web interface and navigate to: |
| 164 | + |
| 165 | +```text |
| 166 | +Deployment Status → ActiveGates |
| 167 | +``` |
| 168 | + |
| 169 | +You should see your ActiveGate instance listed with: |
| 170 | + |
| 171 | +- Host name |
| 172 | +- Version |
| 173 | +- Status: Connected |
| 174 | + |
| 175 | + |
| 176 | + |
| 177 | + |
| 178 | + |
| 179 | +## Test application monitoring with Nginx |
| 180 | + |
| 181 | +To validate that Dynatrace is collecting monitoring data correctly, deploy a simple web server on the virtual machine. Dynatrace OneAgent will automatically detect and monitor the process. |
| 182 | + |
| 183 | +### Install Nginx |
| 184 | + |
| 185 | +Update the package index and install the Nginx web server. |
| 186 | + |
| 187 | +```console |
| 188 | +sudo apt update |
| 189 | +sudo apt install -y nginx |
| 190 | +``` |
| 191 | +## Check the Nginx service status. |
| 192 | + |
| 193 | +```console |
| 194 | +sudo systemctl status nginx |
| 195 | +``` |
| 196 | + |
| 197 | +The output is similar to: |
| 198 | + |
| 199 | +```output |
| 200 | +Active: active (running) |
| 201 | +``` |
| 202 | + |
| 203 | +## Verify process detection in Dynatrace |
| 204 | + |
| 205 | +Dynatrace OneAgent automatically discovers running processes and services. |
| 206 | + |
| 207 | +Return to the Dynatrace web interface and navigate to: |
| 208 | + |
| 209 | +```text |
| 210 | +Infrastructure & Operations → Hosts |
| 211 | +``` |
| 212 | + |
| 213 | +Select your monitored host and open: |
| 214 | + |
| 215 | +```text |
| 216 | +Processes |
| 217 | +``` |
| 218 | + |
| 219 | +You should see a process similar to: |
| 220 | + |
| 221 | +- nginx |
| 222 | +- Dynatrace automatically begins collecting metrics such as: |
| 223 | +- CPU usage |
| 224 | +- memory consumption |
| 225 | +- network activity |
| 226 | +- request throughput |
| 227 | + |
| 228 | + |
| 229 | + |
| 230 | +## What you've accomplished |
| 231 | + |
| 232 | +You've successfully installed Dynatrace ActiveGate on your Azure Ubuntu Arm64 virtual machine. Your environment now includes: |
| 233 | + |
| 234 | +- Dynatrace OneAgent performing host monitoring |
| 235 | +- ActiveGate routing monitors traffic securely |
| 236 | +- Communication with Dynatrace SaaS through port 9999 |
| 237 | +- Full compatibility with Arm64-based Cobalt 100 processors |
0 commit comments