Zj410 Hi What is the fastest way in CLI to check if the PEM certificate is correctly spliced? Running debian 12 Thanks
aaPanel_Kern Hello, You can try to verify whether the MD5 of the certificate and key are consistent openssl rsa -noout -modulus -in privateKey.pem | openssl md5 openssl x509 -noout -modulus -in certificate.pem | openssl md5 Zj410