【转帖】pyspider:connect to scheduler rpc error: error(10061, '')问题解决方案

【转帖】pyspider:connect to scheduler rpc error: error(10061, '')问题解决方案_第1张图片

解决方案:

1、https://github.com/binux/pyspider/issues/238

2、https://segmentfault.com/q/1010000004743537/a-1020000005079799

这个问题是由于 scheduler 没有正常启动。

通过长时间观察遇到这个坑的用户,几个月一来,一直没人提供的信息,直到https://www.sthmicro.com/2016/05/06/pyspider-first-test/, http://blog.ouoshop.com/archives/103 终于有人提到 scheduler 在启动的时候报 ImportError: No module named xmlrpc_server

升级 pip install -U six 就好了


3、

pip install -U supernova
pip install -U python-novaclient

4、

这种是因为scheduler默认用到了python自带的消息队列,不知道为啥在windows上用着有问题,这个时候换个消息队列就好了。比如说安装个redis,然后配置里面加上下面这个配置(redis是在本地):
"message_queue": "redis://localhost:6379/db"

另外redis在windows上没有官方的,现在是微软开发的可以去这里下载: redis-windows

你可能感兴趣的:(Python,Python)