Sending Data to elasticsearch

Hello,

When i try to connect to my elasticsearch, i have this problem.

If i dont use ca_certs, its ok but i have the warnings because i dont use the ssl, but when i use the ssl, i have this error(

elastic_transport.TlsError: TLS error caused by: TlsError(TLS error caused by: SSLError([Errno 13] Permission denied))

My_configuration.py
client = Elasticsearch(
hosts='https://ip:9200',
basic_auth=("elastic", "passwd"),
verify_certs=True,
ca_certs='path'
)

resp = client.index(index="lista_de_vulnerabilidades",
id=cve, document=info_do_cve)

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.