deep-neuroevolution
deep-neuroevolution copied to clipboard
no file or directory '/tmp/es_redis_master.sock.'
I got the following error:
[2019-07-03 17:08:04,453 pid=11687] Could not connect to {'unix_socket_path': '/tmp/es_redis_master.sock'}. Retrying after 7.11 sec (2/300). Error: Error 2 connecting to unix socket: /tmp/es_redis_master.sock. No such file or directory.
Could you please tell me how to resolve it? Thanks.
I had a similar issue. It's likely that you have a redis-server instance running on the same address that you're trying to use. So if you're using Linux (Ubuntu) try: /etc/init.d/redis-server stop
. Else, if you're working on a Mac you could try: redis-cli shutdown
.
You should be able to run it then.