summaryrefslogtreecommitdiffstats
path: root/packaging/installer/README.md
diff options
context:
space:
mode:
authorPaul Emm. Katsoulakis <34388743+paulkatsoulakis@users.noreply.github.com>2020-01-02 23:34:22 +0100
committerJames Mills <1290234+prologic@users.noreply.github.com>2020-01-03 08:34:22 +1000
commitc7ea25076270a9f68fc8db8b75c71280776861ae (patch)
treef9bdedb274787423c114ffe5f427d15d4564e239 /packaging/installer/README.md
parent16b6ad2e48449c3afe92f458ace9a67868a4db2c (diff)
netdata/installer: Make netdata installer more flexible, to accommodate install with ssl on MacOS (#6922)
* netdata/packaging: allow passing of LDFLAGS, together with CFLAGS * netdata/packaging: add instructions for mac * Update packaging/installer/README.md Co-Authored-By: Joel Hans <joel.g.hans@gmail.com> * Update packaging/installer/README.md Co-Authored-By: Joel Hans <joel.g.hans@gmail.com> * Update packaging/installer/README.md Co-Authored-By: Joel Hans <joel.g.hans@gmail.com> * netdata/docs: fix doc as per feedback Co-authored-by: Joel Hans <joel.g.hans@gmail.com>
Diffstat (limited to 'packaging/installer/README.md')
-rw-r--r--packaging/installer/README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/packaging/installer/README.md b/packaging/installer/README.md
index 2e040719d6..5505cc8b8e 100644
--- a/packaging/installer/README.md
+++ b/packaging/installer/README.md
@@ -430,6 +430,17 @@ sudo ./netdata-installer.sh --install /usr/local
The installer will also install a startup plist to start Netdata when your Mac boots.
+**Note:** Should you wish to install Netdata with TLS support:
+1. Install OpenSSL via brew by executing `brew install openssl`
+2. Run the installer with the extra CFLAGS and LDFLAGS, since your OpenSSL installation is not automatically symlinked to `/usr/local`
+
+```sh
+# install Netdata in /usr/local/netdata
+cd netdata
+CFLAGS="-I$(brew --prefix)/opt/openssl/include" LDFLAGS="${LDFLAGS} -L$(brew --prefix)/opt/openssl/lib" sudo -E ./netdata-installer.sh --install /usr/local
+```
+
+
##### Alpine 3.x
Execute these commands to install Netdata in Alpine Linux 3.x: