2379

TCP

Etcd

etcd Client

⚠️ Security: DependsStatus: Active🗄️ Category: Database

📋 Basic Information

Port Number
2379
Protocol
TCP
Service
Etcd
Popularity
🔥 High
Description
etcd distributed key-value store client API, serves as Kubernetes backend for all cluster data with high availability and strong consistency
Tags
distributedkey-valuekubernetes

🔒 Security Information

💡

Security Notes

TLS authentication required, cluster internal only, configure RBAC

🛠️ Installation

🐧Linux

# Linux (Binary)
ETCD_VER=v3.5.9
wget https://github.com/etcd-io/etcd/releases/download/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf etcd-${ETCD_VER}-linux-amd64.tar.gz
cd etcd-${ETCD_VER}-linux-amd64
./etcd

🐳Docker

docker run -d --name etcd -p 2379:2379 quay.io/coreos/etcd:latest

Check

curl http://localhost:2379/health

🔗 Related Ports