Skip to content

SSL CERTIFICATE RENEWAL- BEETLESMARTPHONESECURITY.COM

0

I have an expired ssl certificate for the domain beetlesmartphonesecurity.com i need to be guided on how to renew it on my aws server kindly

asked a month ago76 views

1 Answer
0

Hello.

I checked using the curl command, and it appears that the SSL certificate is working without any problems.
If the expiration date has passed, the HTTPS connection will also fail with curl, but it succeeds as shown below.

curl https://beetlesmartphonesecurity.com -I
HTTP/1.1 200 OK
Date: Mon, 08 Jun 2026 10:48:44 GMT
Server: Apache/2.4.41 (Ubuntu)
Content-Type: text/html; charset=UTF-8

The expiration date seemed to be in July.

openssl s_client -connect beetlesmartphonesecurity.com:443 -servername beetlesmartphonesecurity.com </dev/null 2>/dev/null | openssl x509 -noout -dates
notBefore=Apr 17 20:35:58 2026 GMT
notAfter=Jul 16 20:35:57 2026 GMT

openssl s_client -connect beetlesmartphonesecurity.com:443 \
   -servername beetlesmartphonesecurity.com </dev/null 2>/dev/null \
   | openssl x509 -noout -issuer -subject -dates
issuer=C=US, O=Let's Encrypt, CN=R12
subject=CN=beetlesmartphonesecurity.com
notBefore=Apr 17 20:35:58 2026 GMT
notAfter=Jul 16 20:35:57 2026 GMT

Since your SSL certificate appears to be using Let's Encrypt, the procedure will likely differ depending on the command used to issue the certificate.
If you issued the certificate using certbot, you should be able to renew it using the renew command as shown below.
https://eff-certbot.readthedocs.io/en/stable/using.html#certbot-commands

certbot renew --dry-run
certbot renew
EXPERT

answered a month ago

EXPERT

reviewed a month ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.