Certbot with Apache
certbot and apache Prelim Concepts A .pfx file is a PKCS#12 archive. Typically, a PKCS#12 archive contains a certificate (possibly with its assorted set of CA certificates) and the corresponding private key. A .cert (or .cer or .crt)…
Letsencrypt Certbot Common Tasks
This content is password protected. To view it please enter your password below: Password:
Installing certbot on an EC2 using AWS Systems Manager
Registering the certbot client and requesting a certificate - sudo yum -y install yum-utils - sudo yum -y install - sudo yum-config-manager --enable rhui-REGION-rhel-server-extras rhui-REGION-rhel-server-optional - sudo yum -y install certbot - sudo certbot register --server {{ CertServerUrl }} -m {{ contactEmail }} --no-eff-email - sudo certbot certonly --server {{ CertServerUrl }} --cert-name {{ certName }} -d {{ certDomains }} --webroot-path {{ webrootPath }} > / The terraform file () # input variables variable "instance_ids" { type = list default = } variable "cert_common_name" { type = string default = "avTestCert" }…
Troubleshooting letsencrypt and certbot
On Linux - once installed, look for certbot using ls -l /bin /usr/bin | grep certbot OR just grep certbot If you get a result, you should see the certbot…
Invalid Document Content Error in running an AWS SSM document
If you are using terraform to create a systems manager document and an SSM association, there are a few hiccups you might encounter Also see this post on Systems Manager…