summaryrefslogtreecommitdiff
path: root/controller
diff options
context:
space:
mode:
authorGrant Limberg <grant.limberg@zerotier.com>2018-11-30 10:41:54 -0800
committerGrant Limberg <grant.limberg@zerotier.com>2018-11-30 10:41:54 -0800
commitb75f212d709a05acb6069c0eaa6a7509f5e6d87e (patch)
tree45a9cd4977732f0755fc0e7c7cb10175a9f2d194 /controller
parentccb856749fba9e2fa6bc844f13527888e832e04f (diff)
downloadinfinitytier-b75f212d709a05acb6069c0eaa6a7509f5e6d87e.tar.gz
infinitytier-b75f212d709a05acb6069c0eaa6a7509f5e6d87e.zip
Replace RethinkDB section in controller/README with PostgreSQL
Diffstat (limited to 'controller')
-rw-r--r--controller/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/controller/README.md b/controller/README.md
index 23bd931d..95220c11 100644
--- a/controller/README.md
+++ b/controller/README.md
@@ -19,9 +19,9 @@ Since ZeroTier nodes are mobile and do not need static IPs, implementing high av
ZeroTier network controllers can easily be run in Docker or other container systems. Since containers do not need to actually join networks, extra privilege options like "--device=/dev/net/tun --privileged" are not needed. You'll just need to map the local JSON API port of the running controller and allow it to access the Internet (over UDP/9993 at a minimum) so things can reach and query it.
-### RethinkDB Database Implementation
+### PostgreSQL Database Implementation
-The default controller stores its data in the filesystem in `controller.d` under ZeroTier's home folder. There's an alternative implementation that stores data in RethinkDB that can be built with `make central-controller`. Right now this is only guaranteed to build and run on Linux and is designed for use with [ZeroTier Central](https://my.zerotier.com/). You're welcome to use it but we don't "officially" support it for end-user use and it could change at any time.
+The default controller stores its data in the filesystem in `controller.d` under ZeroTier's home folder. There's an alternative implementation that stores data in PostgreSQL that can be built with `make central-controller`. Right now this is only guaranteed to build and run on Centos 7 Linux with PostgreSQL 10 installed via the [PostgreSQL Yum Repository](https://www.postgresql.org/download/linux/redhat/) and is designed for use with [ZeroTier Central](https://my.zerotier.com/). You're welcome to use it but we don't "officially" support it for end-user use and it could change at any time.
### Upgrading from Older (1.1.14 or earlier) Versions