Hello,
I have just installed curator 5.4 (elasticsearch-curator-5.4.1-1.x86_64.rpm) but I can't launch anything.
I created simple config file below :
Remember, leave a key empty if there is no value. None will be a string,
# not a Python "NoneType"
client:
hosts: XXX
port: 9200
url_prefix:
use_ssl: False
certificate:
client_cert:
client_key:
ssl_no_validate: False
http_auth:
timeout: 30
master_only: False
logging:
loglevel: DEBUG
logfile: /data.di/curator/logs
logformat: default
blacklist: ['elasticsearch', 'urllib3']
The error I have when I launch curator_cli :
curator --help
Traceback (most recent call last):
File "/home/buh/.local/lib/python3.6/site-packages/cx_Freeze/initscripts/__startup__.py", line 14, in run
File "/home/buh/.local/lib/python3.6/site-packages/cx_Freeze/initscripts/Console.py", line 26, in run
File "run_curator.py", line 23, in <module>
File "/home/buh/curator/curator/__init__.py", line 6, in <module>
File "/home/buh/curator/curator/utils.py", line 2, in <module>
File "/home/buh/.local/lib/python3.6/site-packages/elasticsearch/__init__.py", line 17, in <module>
File "/home/buh/.local/lib/python3.6/site-packages/elasticsearch/client/__init__.py", line 4, in <module>
File "/home/buh/.local/lib/python3.6/site-packages/elasticsearch/transport.py", line 4, in <module>
File "/home/buh/.local/lib/python3.6/site-packages/elasticsearch/connection/__init__.py", line 3, in <module>
File "/home/buh/.local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 2, in <module>
File "/usr/local/lib/python3.6/ssl.py", line 101, in <module>
ImportError: /lib64/libcrypto.so.10: version `OPENSSL_1.0.2' not found (required by /opt/elasticsearch-curator/lib/_ssl.cpython-36m-x86_64-linux-gnu.so)
OS : RHEL 7.3
python version : 2.7.5
elasticsearch version : 6.0.1
Anyone has already had this problem ?
Regards