Need to renew wildcard certificate with domain managed by Godaddy

Most likely you manually created the TXT record, right? In this case, you cannot use certbot renew .

You must use the certonly command (like you did the first time):

certbot certonly -d "obotworld-videoplatform.com" -d "*.obotworld-videoplatform.com" -a manual --preferred-challenges dns

By the way, there is an alternative to using Certbot that supports wildcard certificates + automatic renewal via GoDaddy DNS: https://github.com/Neilpang/acme.sh/tree/master/dnsapi#4-use-godaddycom-domain-api-to-automatically-issue-cert

1 Like