Tag: elasticsearch docker elastic4s

org.elasticsearch.client.transport.NoNodeAvailableException:没有configuration的节点可用:

我在Docker上运行ElasticSearch在本地可用 $ curl http://192.168.99.100:9200/?pretty { "status" : 200, "name" : "Collector", "cluster_name" : "elasticsearch", "version" : { "number" : "1.4.4", "build_hash" : "c88f77ffc81301dfa9dfd81ca2232f09588bd512", "build_timestamp" : "2015-02-19T13:05:36Z", "build_snapshot" : false, "lucene_version" : "4.10.3" }, "tagline" : "You Know, for Search" } 我使用Elastic4s ,连接到ElasticSearch ,我尝试了下面的方法,但他们都给了我错误 val client = ElasticClient.remote(host = "192.168.99.100", port = 9200) 和 val settings […]