Am trying to get ssl working on my ec2 instance, but sudo yum caddy install
tells me i need to have Requires: libc.so.6(GLIBC_2.34)(64bit)
which by the way i cant find a way to install it on linux ec2 server
Error: Package: caddy-2.4.6-1.el9.x86_64 (copr:copr.fedorainfracloud.org:group_caddy:caddy) Requires: libc.so.6(GLIBC_2.34)(64bit)
Asked Answered
If found any solution to this, please help us out :) –
Lewin
Did you end up solving this? –
Roomy
No, no success yet –
Lewin
Does this answer your question? Cannot download caddy package on yum –
Itol
I had the same issue, but was able to successfully install it by building it from source: https://caddyserver.com/docs/build#build-from-source
Make sure you have Golang installed first, that's really easy
No problem! Let me know if it works –
Roomy
Thanks, this helped me out. I added some notes at stackoverflow.com/questions/73347341 –
Cultrate
thanks @Cultrate Magruder the details you added about golang are so useful –
Lewin
this didnt work for me on the latest EC2 linux. –
Harmonicon
@Harmonicon What was the issue? –
Roomy
I was able to solve this issue using binary file. Installing caddy via yum commands didn't work in my Amazon EC2 machine.
You can go to official github repo releases page of caddy, find desired version and download the binary.
curl -sSLO "https://github.com/caddyserver/caddy/releases/download/v2.7.6/caddy_2.7.6_linux_arm64.tar.gz"
tar xvf caddy_2.7.6_linux_arm64.tar.gz
echo $PATH
sudo mv caddy /usr/bin/
© 2022 - 2024 — McMap. All rights reserved.