How To Install etcd on Fedora 36

In this tutorial we learn how to install etcd in Fedora 36. etcd is Distributed reliable key-value store for the most critical data of a distributed system

Introduction

In this tutorial we learn how to install etcd on Fedora 36.

What is etcd

Distributed reliable key-value store for the most critical data of a distributed system.

We can use yum or dnf to install etcd on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install etcd.

Install etcd on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install etcd using dnf by running the following command:

sudo dnf -y install etcd

Install etcd on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install etcd using yum by running the following command:

sudo yum -y install etcd

How To Uninstall etcd on Fedora 36

To uninstall only the etcd package we can use the following command:

sudo dnf remove etcd

etcd Package Contents on Fedora 36

/etc/etcd
/etc/etcd/etcd.conf
/usr/bin/etcd
/usr/bin/etcdctl
/usr/bin/etcdutl
/usr/lib/.build-id
/usr/lib/.build-id/9c
/usr/lib/.build-id/9c/48caf2206e67bbb4cc18839e0bed62d7b2c52f
/usr/lib/.build-id/b3
/usr/lib/.build-id/b3/e871a9f4c68e854603ca09a62ad49a3b68227d
/usr/lib/.build-id/c8
/usr/lib/.build-id/c8/ded94f4d12625f1ea32f8ffb92a00f3d1bc374
/usr/lib/systemd/system/etcd.service
/usr/share/doc/etcd
/usr/share/doc/etcd/CONTRIBUTING.md
/usr/share/doc/etcd/Documentation
/usr/share/doc/etcd/Documentation/README.md
/usr/share/doc/etcd/Documentation/dev-guide
/usr/share/doc/etcd/Documentation/dev-guide/apispec
/usr/share/doc/etcd/Documentation/dev-guide/apispec/swagger
/usr/share/doc/etcd/Documentation/dev-guide/apispec/swagger/rpc.swagger.json
/usr/share/doc/etcd/Documentation/dev-guide/apispec/swagger/v3election.swagger.json
/usr/share/doc/etcd/Documentation/dev-guide/apispec/swagger/v3lock.swagger.json
/usr/share/doc/etcd/README-clientv2.md
/usr/share/doc/etcd/README-clientv3.md
/usr/share/doc/etcd/README-contrib.md
/usr/share/doc/etcd/README-etcdctl.md
/usr/share/doc/etcd/README-etcdutl.md
/usr/share/doc/etcd/README-hack.md
/usr/share/doc/etcd/README-pkg.md
/usr/share/doc/etcd/README-raft.md
/usr/share/doc/etcd/README-security.md
/usr/share/doc/etcd/README.md
/usr/share/doc/etcd/READMEv2-etcdctl.md
/usr/share/licenses/etcd
/usr/share/licenses/etcd/LICENSE
/var/lib/etcd

References

Summary

In this tutorial we learn how to install etcd on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).