Control Web Panel
WebPanel => SSL => Topic started by: cfreire on May 08, 2025, 03:38:04 PM
-
Hi I have intended renew my expired certs, webmail... cpanel... etc. In the web interface the renewing is success aparently, but when I reload the webpage, the advice tahr "expired" is still there. When I check in /etc/pki/tls/certs the .cert files, effectively, they are expired. Somethig is avoiding that the .cert or blundle files be rewriting.
How can I resolv this problem please?? Regards.
-
Possibly a bug from CWP.
This happened to me migrating domains from another server.
Once the domain was renewed manually, now the renewing process is automatic again.
Try to create a script, named like 'renew-cert.sh', to renew manually:
#!/bin/bash
DOM=${1}
/root/.acme.sh/acme.sh --home /root/.acme.sh/cwp_certs --renew --ecc -d ${DOM} --force
Change permissions:
# chmod 700 renew-cert.sh
And run the script (replacing "domain.com" with your domain):
# ./renew-cert.sh domain.com
Regards,
Netino