Verified diagnostic signature
The client could not build a trusted certificate chain.
Match output from tls, understand the likely cause, then continue with sourced, read-only checks.
- Confidence
- high
- Platforms
- linux · macos · windows
- Verified
- 2026-07-24
Recognized output
Signature matched locally
unable to get local issuer certificateOneLiners matches this pattern in your browser. Your pasted output is not stored or indexed.
Likely causes
What usually produces this signal
- Missing intermediate certificate
- Private CA not trusted
- Incorrect server chain
- Intercepting proxy
Safe next checks
Collect evidence before changing the system
Inspect a remote TLS certificate
openssl s_client -connect <host>:<port> -servername <host> </dev/null 2>/dev/null | openssl x509 -noout -subject -issuer -datesThe output matches the expected target and exits without an error.
Print subjects, issuers, and validity dates for a TLS chain
openssl s_client -showcerts -connect <host>:<port> -servername <host> </dev/null 2>/dev/null | openssl crl2pkcs7 -nocrl -certfile /dev/stdin | openssl pkcs7 -print_certs -nooutThe output matches the expected target and exits without an error.