While trying to use this I keep running into an issue. If it’s something I’m missing, I apologize ahead of time as I’m been doing linux/cli/amazon/ssl for less than a year now. I was able to get the LE client to install and able to run certonly --standalone to get a good cert at least on the machine.
I then tried to use install to install that cert but I then get a message stating that no installers are available on your OS yet; try running letsencrypt-auto certonly to get a cert. I’ve already done that and have specified the cert/key paths when running the install.
serverco - I did obtain the certificate successfully. It’s in /etc/letsencrypt. Am I misunderstanding that part of LE is also installing/configuring the cert as well? I tried to install it using the above command I referenced to pfg.
Automatic installation is currently only available for apache2 on debian-based distributions. Amazon Linux is based on CentOS iirc. Additionally, I don’t think letsencrypt-auto install is a valid invocation of the client. To use the apache plugin, you would simply pass --apache to the client (but that wouldn’t work on your OS anyway).
You will have to perform the installation manually. Maybe the Mozilla SSL configuration generator will help you. If you’re using apache, you would need something like this in your vhost to get apache to use your Let’s Encrypt certs (this is not a complete configuration, refer to the generator):
You originally used a “certonly” which effectively gets the certificate but doesn’t try and install it. If you use that method then as far as I’m aware there isn’t a way to get it the LE script automatically install it into the right place for you.
Are you using Apache ? and are you using any “control panel” or other system to manage apache ? or just the core apache ? If you have a “control panel” it will probably have a system for installing the SSL cert. If not, then you need to add it manually (relatively straightforward, simply editing a text file )
Thanks for the replies again, I really appreciate it. I was able to get it installed manually, I was just wanting to make sure that I hadn’t missed something in the way of an automatic installation possibility and renewing every 90 on this particular machine probably isn’t going to happen from what I’m told.
Thank you both once again for your time and assistance.