0 Pluspunkte 0 Minuspunkte

Wenn ich einen Elasticsearch Request mit Curl absetze 

curl --cacert "D:\\Programme\\elasticsearch-8.9.0\\config\\certs\\http_ca.crt" -u elastic https://localhost:9200

bekomme ich diesen Fehler

curl: (60) schannel: CertGetCertificateChain trust error CERT_TRUST_REVOCATION_STATUS_UNKNOWN
More details here: https://curl.se/docs/sslcerts.html

curl failed to verify the legitimacy of the server and therefore could not
establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.

Was kann ich da machen?

von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Das Zertifikat ist nicht von einer vertrauenswürdigen Stelle signiert. Du hast mehrere Optionen, entweder du fügst das Zertifikat manuell zum Windows Zertifikatsspeicher hinzu oder du erstellst ein kostenloses Zertifikat mit Lets Encrypt. Als Workaround kannst du cURL mit dem Parameter --insecure aufrufen

curl --cacert "D:\\Programme\\elasticsearch-8.9.0\\config\\certs\\http_ca.crt" --insecure -u elastic https://localhost:9200

von