# Unable to create client connect; SSL certificate verify failed

**URL:** https://discuss.elastic.co/t/unable-to-create-client-connect-ssl-certificate-verify-failed/229352
**Category:** Elasticsearch
**Tags:** docker, curator
**Created:** [April 22, 2020, 9:08pm UTC](https://discuss.elastic.co/t/unable-to-create-client-connect-ssl-certificate-verify-failed/229352 "2020-04-22T21:08:37Z")
**Posts on this page:** 1
**Showing post:** 17

<div class="post-metadata">

### Author: ![theuntergeek](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/theuntergeek/32/44961_2.png) [@theuntergeek](https://discuss.elastic.co/u/theuntergeek)
#### Post date: [May 12, 2020, 1:27pm UTC](https://discuss.elastic.co/t/unable-to-create-client-connect-ssl-certificate-verify-failed/229352/17 "2020-05-12T13:27:37Z")

</div>

This tells me that you did not run this step:

> [@Mehak\_Bhargava](#):
>
> ```auto
> wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - 
> sudo apt-get update && sudo apt-get install elasticsearch-curator
> 
> ```

The reason why I know this is that I can see that `packages.elastic.co` does not appear in the `apt update` list of repositories.

I do see `artifacts.elastic.co`, but that is a separate repository. The curator packages are in `packages.elastic.co`.

See [this step](https://www.elastic.co/guide/en/elasticsearch/client/curator/5.8/apt-repository.html#_repository_configuration):

> Add one of the following — **noting the correct path, `debian` or `debian9`** — in your `/etc/apt/sources.list.d/` directory in a file with a `.list` suffix, for example `curator.list`

```auto
deb [arch=amd64] https://packages.elastic.co/curator/5/debian stable main

```

and then you can run `sudo apt update && sudo apt install elasticsearch-curator`

Please perform that step and Curator 5.8 should install.

---

_[View the full topic](https://discuss.elastic.co/t/unable-to-create-client-connect-ssl-certificate-verify-failed/229352)._
