Jakob
I did try to use that certificate as the root cert and I got a different error. I agree that the certificate says it should be valid but the EU Trust Services Dashboard has conflicting information.
Some examples of what I tried and the result errors:
The intermediate then the root cert
chain file:
cat MULTICERT_Trust_Services_Certification_Authority_005.pem MULTICERT_Root_Certification_Authority_01.pem > chain.pem
error:
Error message: Certificate root is not trusted. Make sure that the last certificate in the chain is the root certificate.
The root cert then the intermediate
chain file:
cat MULTICERT_Root_Certification_Authority_01.pem MULTICERT_Trust_Services_Certification_Authority_005.pem > chain.pem
error:
Error message: Certificate "MULTICERT Root Certification Authority 01" expects the next certificate in the chain to be "MULTICERT Trust Services Certification Authority 005". Make sure the order of intermediate and root certificates are correct.
Only the intermediate cert
chain file:
cat MULTICERT_Trust_Services_Certification_Authority_005.pem > chain.pem
error:
Error message: Certificate root is not trusted. Make sure that the last certificate in the chain is the root certificate.
Only the root cert
chain file:
cat MULTICERT_Root_Certification_Authority_01.pem > chain.pem
error:
Error message: Certificate "MULTICERT Root Certification Authority 01" expects the next certificate in the chain to be "MULTICERT Trust Services Certification Authority 005". Make sure the order of intermediate and root certificates are correct.