diff options
author | Thibaut Notteboom <thibaut.notteboom@gmail.com> | 2018-07-23 22:12:25 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-07-28 08:51:47 +0700 |
commit | 819088b4aaf1d84bfde15597aaff6870505534af (patch) | |
tree | 25d3fba75203c033574a7e56490457a2006d073e /network/etcd/README | |
parent | a89d29f0f8bd2f8d7c12a3a77146a00f0f677f3d (diff) | |
download | slackbuilds-819088b4aaf1d84bfde15597aaff6870505534af.tar.gz |
network/etcd: Added (key value store for shared configuration).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network/etcd/README')
-rw-r--r-- | network/etcd/README | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/network/etcd/README b/network/etcd/README new file mode 100644 index 0000000000..17acd9492d --- /dev/null +++ b/network/etcd/README @@ -0,0 +1,16 @@ +Etcd is a distributed reliable key-value store for the most critical +data of a distributed system, with a focus on being: + Simple: well-defined, user-facing API (gRPC) + Secure: automatic TLS with optional client cert authentication + Fast: benchmarked 10,000 writes/sec + Reliable: properly distributed using Raft + +Groupname and Username + +You must have the 'etcd' group and user to run this script, +for example: + + groupadd -g 355 etcd + useradd -d /var/lib/etcd -s /bin/sh -u 355 -g etcd etcd + +For some basic setup instructions, check the included 'README.SBo'. |