@cryptotaxi247 / netdata-1 / commits / 8fad3b91c

Finish adding notices (#9422)

Joel Hans committed Jun 26, 2020 at 07:47 UTC 8fad3b91c0b4b4a151e8ed78f9091847b7c9b0cf
4 files changed +35 -6
README.md
+2 -2
@@ -125,8 +125,8 @@ Today](https://registry.my-netdata.io/api/v1/badge.svg?chart=netdata.registry_se
125 ![](https://registry.my-netdata.io/api/v1/badge.svg?chart=web_log_nginx.requests_per_url&options=unaligned&dimensions=kickstart&group=sum&after=-3600&label=last+hour&units=installations&value_color=orange&precision=0)
126 ![](https://registry.my-netdata.io/api/v1/badge.svg?chart=web_log_nginx.requests_per_url&options=unaligned&dimensions=kickstart&group=sum&after=-86400&label=today&units=installations&precision=0)
127
128 -To install Netdata from source on any Linux system (physical, virtual, container, IoT, edge) and keep it up to date with
129 -our **nightly releases** automatically, run the following:
128 +To install Netdata from source on any Linux system (physical, virtual, container, IoT, edge), including all dependencies
129 +required to connect to Netdata Cloud, and get _automatic nightly updates_, run the following as your normal user:
130
131 ```bash
132 # make sure you run `bash` for your shell
packaging/installer/README.md
+29 -1
@@ -36,7 +36,8 @@ _actively_ contributing to Netdata's future.
36
37 This method is fully automatic on all Linux distributions, including Ubuntu, Debian, Fedora, CentOS, and others.
38
39 -To install Netdata from source and get _automatic nightly updates_, run the following as your normal user:
39 +To install Netdata from source, including all dependencies required to connect to Netdata Cloud, and get _automatic
40 +nightly updates_, run the following as your normal user:
41
42 ```bash
43 bash <(curl -Ss https://my-netdata.io/kickstart.sh)
@@ -190,6 +191,33 @@ To install the Agent on certain CentOS and RHEL systems, you must enable non-def
191 PowerTools, to gather hard dependencies. See the [CentOS 6](/packaging/installer/methods/manual.md#centos-rehel-6-x) and
192 [CentOS 8](/packaging/installer/methods/manual.md#centos-rehel-8-x) sections for more information.
193
194 +### Access to file is not permitted
195 +
196 +If you see an error similar to `Access to file is not permitted: /usr/share/netdata/web//index.html` when you try to
197 +visit the Agent dashboard at `http://NODE:19999`, you need to update Netdata's permissions to match those of your
198 +system.
199 +
200 +Run `ls -la /usr/share/netdata/web/index.html` to find the file's permissions. You may need to change this path based on
201 +the error you're seeing in your browser. In the below example, the file is owned by the user `netdata` and the group
202 +`netdata`.
203 +
204 +```bash
205 +ls -la /usr/share/netdata/web/index.html
206 +-rw-r--r--. 1 netdata netdata 89377 May 5 06:30 /usr/share/netdata/web/index.html
207 +```
208 +
209 +Open your `netdata.conf` file and find the `[web]` section, plus the `web files owner`/`web files group` settings. Edit
210 +the lines to match the output from `ls -la` above and uncomment them if necessary.
211 +
212 +```conf
213 +[web]
214 + web files owner = netdata
215 + web files group = netdata
216 +```
217 +
218 +Save the file, [restart the Netdata Agent](/docs/getting-started.md#start-stop-and-restart-netdata), and try accessing
219 +the dashboard again.
220 +
221 ### Multiple versions of OpenSSL
222
223 We've received reports from the community about issues with running the `kickstart.sh` script on systems that have both
packaging/installer/methods/kickstart-64.md
+2 -1
@@ -14,7 +14,8 @@ This page covers detailed instructions on using and configuring the installation
14 This method uses a pre-compiled static binary to install Netdata on any Intel/AMD 64bit Linux system and on any Linux
15 distribution, even those with a broken or unsupported package manager.
16
17 -To install Netdata from a binary package and get _automatic nightly updates_, run the following as your normal user:
17 +To install Netdata from a static binary package, including all dependencies required to connect to Netdata Cloud, and
18 +get _automatic nightly updates_, run the following as your normal user:
19
20 ```bash
21 bash <(curl -Ss https://my-netdata.io/kickstart-static64.sh)
packaging/installer/methods/kickstart.md
+2 -2
@@ -12,8 +12,8 @@ custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/instal
12 This page covers detailed instructions on using and configuring the automatic one-line installation script named
13 `kickstart.sh`.
14
15 -This method is fully automatic on all Linux distributions. To install Netdata from source and get _automatic nightly
16 -updates_, run the following as your normal user:
15 +This method is fully automatic on all Linux distributions. To install Netdata from source, including all dependencies
16 +required to connect to Netdata Cloud, and get _automatic nightly updates_, run the following as your normal user:
17
18 ```bash
19 bash <(curl -Ss https://my-netdata.io/kickstart.sh)