记录个错误:django连接elasticsearch失败Failed to establish a new connection: [Errno 113] No route to host

做django商城项目时报错,错误信息:

urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 113] No route to host

原因是因为虚拟机ip改变了;需要重新配置下ip

一共三个位置,

第一个:

# Haystack
HAYSTACK_CONNECTIONS = {
    'default': {
        'ENGINE': 'haystack.backends.elasticsearch_backend.ElasticsearchSearchEngine',
        'URL': 'http://192.168.188.143:9200/',  # 此处为elasticsearch运行的服务器ip地址,端口号固定为9200
        'INDEX_NAME': 'meiduo',  # 指定elasticsearch建立的索引库的名称
    },
}

第二个:FDFS_BASE_URL = 'http://192.168.188.144:8888/'

第三个:elasticsearch.yml配置文件里的ip地址

可能还需重启下docker里的elasticsearch容器

如果报这个错误:NewConnectionError(: Failed to establish a new connection: [Errno 111] Connection refused)

是elasticsearch容器启动,重启下容器就好了

 

 

你可能感兴趣的:(记录个错误:django连接elasticsearch失败Failed to establish a new connection: [Errno 113] No route to host)