2019-04-09 14:39:42 -04:00
# etcd V3 Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
2022-02-11 19:51:25 -05:00
2018-10-12 14:32:18 -04:00
etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines.
## Get started
2022-02-11 19:51:25 -05:00
2018-10-12 14:32:18 -04:00
### 1. Prerequisites
2022-02-11 19:51:25 -05:00
2018-10-12 14:32:18 -04:00
- Docker 18.03 or above, refer here for [installation ](https://docs.docker.com/install/ ).
### 2. Start etcd
2022-02-11 19:51:25 -05:00
2018-10-25 02:09:31 -04:00
etcd uses [gcr.io/etcd-development/etcd ](https://console.cloud.google.com/gcr/images/etcd-development/GLOBAL/etcd ) as a primary container registry.
2018-10-12 14:32:18 -04:00
```
rm -rf /tmp/etcd-data.tmp & & mkdir -p /tmp/etcd-data.tmp & & \
2021-07-12 20:04:07 -04:00
podman rmi gcr.io/etcd-development/etcd:v3.3.9 || true & & \
2021-07-07 21:07:29 -04:00
podman run \
2018-10-12 14:32:18 -04:00
-p 2379:2379 \
-p 2380:2380 \
--mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
--name etcd-gcr-v3.3.9 \
gcr.io/etcd-development/etcd:v3.3.9 \
/usr/local/bin/etcd \
--name s1 \
--data-dir /etcd-data \
--listen-client-urls http://0.0.0.0:2379 \
--advertise-client-urls http://0.0.0.0:2379 \
--listen-peer-urls http://0.0.0.0:2380 \
--initial-advertise-peer-urls http://0.0.0.0:2380 \
--initial-cluster s1=http://0.0.0.0:2380 \
--initial-cluster-token tkn \
--initial-cluster-state new
```
2018-10-29 14:14:12 -04:00
You may also setup etcd with TLS following this documentation [here ](https://coreos.com/etcd/docs/latest/op-guide/security.html )
2019-04-09 14:39:42 -04:00
### 3. Setup MinIO with etcd
2022-02-11 19:51:25 -05:00
2019-04-09 14:39:42 -04:00
MinIO server expects environment variable for etcd as `MINIO_ETCD_ENDPOINTS` , this environment variable takes many comma separated entries.
2022-02-11 19:51:25 -05:00
2018-10-12 14:32:18 -04:00
```
2018-11-02 00:41:11 -04:00
export MINIO_ETCD_ENDPOINTS=http://localhost:2379
2018-10-12 14:32:18 -04:00
minio server /data
```
2018-10-29 14:14:12 -04:00
NOTE: If `etcd` is configured with `Client-to-server authentication with HTTPS client certificates` then you need to use additional envs such as `MINIO_ETCD_CLIENT_CERT` pointing to path to `etcd-client.crt` and `MINIO_ETCD_CLIENT_CERT_KEY` path to `etcd-client.key` .
2019-04-09 14:39:42 -04:00
### 4. Test with MinIO STS API
2022-02-11 19:51:25 -05:00
2021-04-08 20:30:17 -04:00
Once etcd is configured, **any STS configuration** will work including Client Grants, Web Identity or AD/LDAP.
For example, you can configure STS with Client Grants (KeyCloak) using the guides at [MinIO STS Quickstart Guide ](https://docs.min.io/docs/minio-sts-quickstart-guide ) and [KeyCloak Configuration Guide ](https://github.com/minio/minio/blob/master/docs/sts/keycloak.md ). Once this is done, STS credentials can be generated:
2018-10-12 14:32:18 -04:00
```
2019-01-04 16:48:12 -05:00
go run client-grants.go -cid PoEgXP6uVO45IsENRngDXj5Au5Ya -csec eKsw6z8CtOJVBtrOWvhRWL4TUCga
2018-10-12 14:32:18 -04:00
##### Credentials
{
2022-02-11 19:51:25 -05:00
"accessKey": "IRBLVDGN5QGMDCMO1X8V",
"secretKey": "KzS3UZKE7xqNdtRbKyfcWgxBS6P1G4kwZn4DXKuY",
"expiration": "2018-08-21T15:49:38-07:00",
"sessionToken": "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJhY2Nlc3NLZXkiOiJJUkJMVkRHTjVRR01EQ01PMVg4ViIsImF1ZCI6IlBvRWdYUDZ1Vk80NUlzRU5SbmdEWGo1QXU1WWEiLCJhenAiOiJQb0VnWFA2dVZPNDVJc0VOUm5nRFhqNUF1NVlhIiwiZXhwIjoxNTM0ODkxNzc4LCJpYXQiOjE1MzQ4ODgxNzgsImlzcyI6Imh0dHBzOi8vbG9jYWxob3N0Ojk0NDMvb2F1dGgyL3Rva2VuIiwianRpIjoiMTg0NDMyOWMtZDY1YS00OGEzLTgyMjgtOWRmNzNmZTgzZDU2In0.4rKsZ8VkZnIS_ALzfTJ9UbEKPFlQVvIyuHw6AWTJcDFDVgQA2ooQHmH9wUDnhXBi1M7o8yWJ47DXP-TLPhwCgQ"
2018-10-12 14:32:18 -04:00
}
```
2019-04-09 14:39:42 -04:00
These credentials can now be used to perform MinIO API operations, these credentials automatically expire in 1hr. To understand more about credential expiry duration and client grants STS API read further [here ](https://github.com/minio/minio/blob/master/docs/sts/client-grants.md ).
2018-10-12 14:32:18 -04:00
## Explore Further
2022-02-11 19:51:25 -05:00
2019-04-09 14:39:42 -04:00
- [MinIO STS Quickstart Guide ](https://docs.min.io/docs/minio-sts-quickstart-guide )
- [The MinIO documentation website ](https://docs.min.io )