uber-research / deep-neuroevolution

Deep Neuroevolution
Other
1.63k stars 298 forks source link

no file or directory '/tmp/es_redis_master.sock.' #33

Open MachengShen opened 5 years ago

MachengShen commented 5 years ago

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.

nph4rd commented 5 years ago

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.