Failed to connect to Dockerized elasticsearch via java-client -


i setup elasticsearch container official repo elasticsearch docker image. run with

docker run -dp elasticsearch 

easy , worked. ps info is

container id        image                  command                created             status              ports                                              names 658b49ed9551        elasticsearch:latest   "/docker-entrypoint.   2 seconds ago       1 seconds        0.0.0.0:32769->9200/tcp, 0.0.0.0:32768->9300/tcp   suspicious_albattani   

and can access server http-client via port 32769->9200

baihetekimacbook-pro:0 baihe$ curl 10.211.55.100:32769 {   "status" : 200,   "name" : "scorpia",   "cluster_name" : "elasticsearch",   "version" : {     "number" : "1.4.5",     "build_hash" : "2aaf797f2a571dcb779a3b61180afe8390ab61f9",     "build_timestamp" : "2015-04-27t08:06:06z",     "build_snapshot" : false,     "lucene_version" : "4.10.4"   },   "tagline" : "you know, search" } 

now need java-program work dockerized elasticsearch. java node client can connected elasticsearch through 32768->9300 (the cluster node talking port). config transport client in java this

    settings settings = immutablesettings.settingsbuilder()             .put("client.transport.sniff", true)             .put("client.transport.ignore_cluster_name", true).build();     client = new transportclient(settings);     ((transportclient) client)     .addtransportaddress(new inetsockettransportaddress(             "10.211.55.100", 32768)); 

then following errors in console:

caused by: org.elasticsearch.client.transport.nonodeavailableexception: none of configured nodes available: []     @ org.elasticsearch.client.transport.transportclientnodesservice.ensurenodesareavailable(transportclientnodesservice.java:305)     @ org.elasticsearch.client.transport.transportclientnodesservice.execute(transportclientnodesservice.java:200)     @ org.elasticsearch.client.transport.support.internaltransportindicesadminclient.execute(internaltransportindicesadminclient.java:86)     @ org.elasticsearch.client.support.abstractindicesadminclient.exists(abstractindicesadminclient.java:170)     @ org.elasticsearch.action.admin.indices.exists.indices.indicesexistsrequestbuilder.doexecute(indicesexistsrequestbuilder.java:53)     @ org.elasticsearch.action.actionrequestbuilder.execute(actionrequestbuilder.java:91)     @ org.elasticsearch.action.actionrequestbuilder.execute(actionrequestbuilder.java:65)     @ cct.bigdata.yellowbook.service.impl.resourceserviceimpl.<init>(resourceserviceimpl.java:49)     @ cct.bigdata.yellowbook.config.yellowbookconfig.resourceservice(yellowbookconfig.java:21)     @ cct.bigdata.yellowbook.config.yellowbookconfig$$enhancerbyspringcglib$$e7d2ff3e.cglib$resourceservice$0(<generated>)     @ cct.bigdata.yellowbook.config.yellowbookconfig$$enhancerbyspringcglib$$e7d2ff3e$$fastclassbyspringcglib$$72e3e213.invoke(<generated>)     @ org.springframework.cglib.proxy.methodproxy.invokesuper(methodproxy.java:228)     @ org.springframework.context.annotation.configurationclassenhancer$beanmethodinterceptor.intercept(configurationclassenhancer.java:312)     @ cct.bigdata.yellowbook.config.yellowbookconfig$$enhancerbyspringcglib$$e7d2ff3e.resourceservice(<generated>)     @ sun.reflect.nativemethodaccessorimpl.invoke0(native method)     @ sun.reflect.nativemethodaccessorimpl.invoke(nativemethodaccessorimpl.java:57)     @ sun.reflect.delegatingmethodaccessorimpl.invoke(delegatingmethodaccessorimpl.java:43)     @ java.lang.reflect.method.invoke(method.java:606)     @ org.springframework.beans.factory.support.simpleinstantiationstrategy.instantiate(simpleinstantiationstrategy.java:166)     ... 31 common frames omitted 

when run elasticsearch directly in host. right.

i check dockerfile of elasticsearch on docker hub. seems of them followings:

expose 9200 9300 

i wonder has tried similar things. 9300 normal tcp port or udp port? need special thing make when running container? thanks!

if set "client.transport.sniff" false should work.

if still want use sniffing follow next instructions: https://github.com/olivere/elastic/wiki/docker

detailed discussion here: https://github.com/olivere/elastic/issues/57#issuecomment-88697714


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -