master
md 51 lines 3.14 KB
Rendered Raw
1 # Install Netdata on AWS
2
3 Netdata is fully compatible with Amazon Web Services (AWS).
4 You can install Netdata on cloud instances to monitor the apps/services running there, or use multiple instances in a [parent-child streaming](/src/streaming/README.md) configuration.
5
6 ## Recommended installation method
7
8 The best installation method depends on the instance's operating system, distribution, and version. For Linux instances, we recommend the [`kickstart.sh` automatic installation script](/packaging/installer/methods/kickstart.md).
9
10 If you have issues with Netdata after installation, look to the sections below to find the issue you're experiencing, followed by the solution for your provider.
11
12 ## Post-installation configuration
13
14 ### Add a firewall rule to access Netdata's dashboard
15
16 If you cannot access Netdata's dashboard on your cloud instance via `http://HOST:19999`, and instead get an error page
17 from your browser that says, "This site can't be reached" (Chrome) or "Unable to connect" (Firefox), you may need to configure your cloud provider's firewall.
18
19 Cloud providers often use network-level firewalls, called Virtual Private Cloud (VPC) networks (e.g., AWS and Google Cloud), separate from the instance. These firewalls can still apply even if the instance's firewall is disabled. Since they can only be modified via the cloud provider's web interface, they are easy to overlook when configuring or accessing Netdata’s dashboard.
20
21 You can often confirm a firewall issue by querying the dashboard while connected to the instance via SSH: `curl
22 http://localhost:19999/api/v1/info`. If you see JSON output, Netdata is running properly. If you try the same `curl`
23 command from a remote system, and it fails, it's likely that a firewall is blocking your requests.
24
25 Another option is to put Netdata behind web server, which will proxy requests through standard HTTP/HTTPS ports
26 (80/443), which are likely already open on your instance. We have a number of guides available:
27
28 - [Apache](/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-apache.md)
29 - [Nginx](/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-nginx.md)
30 - [Caddy](/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-caddy.md)
31 - [HAProxy](/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-haproxy.md)
32 - [lighttpd](/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-lighttpd.md)
33
34 Sign in to the [AWS console](https://console.aws.amazon.com/) and navigate to the EC2 dashboard. Click on the **Security
35 Groups** link in the navigation, beneath the **Network & Security** heading. Find the Security Group your instance
36 belongs to, and either right-click on it or click the **Actions** button above to see a dropdown menu with **Edit
37 inbound rules**.
38
39 Add a new rule with the following options:
40
41 ```text
42 Type: Custom TCP
43 Protocol: TCP
44 Port Range: 19999
45 Source: Anywhere
46 Description: Netdata
47 ```
48
49 You can also choose **My IP** as the source if you prefer.
50
51 Click **Save** to apply your new inbound firewall rule.