etcd fresh install on Alma Linux 9 #18275
Answered
by
sybrandaltron
sybrandaltron
asked this question in
Q&A
-
I am setting up a LAB to test PostgreSQL HA Environment on Alma Linux nodes. But I have a problem getting etcd to run install did go as plan but its not starting |
Beta Was this translation helpful? Give feedback.
Answered by
sybrandaltron
Jul 4, 2024
Replies: 1 comment 1 reply
-
Hi @sybrandaltron - Thanks for your question, can you please confirm:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi jmhbnz,
Thanks for your reply, I was able to get etcd running as the problem was SELinux being enabled and in enforcing mode on my system.
Below is the steps and the URL of the instructions I use to do the install
https://medium.com/@buildbot.tech/how-to-install-and-configure-etcd-on-linux-18f1ec5031b
Define the etcd version
ETCD_VER=v3.5.14
Choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
Download the etcd
curl -L ${GITHUB_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
Extract the package
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp
Optionally mov…