我遇到的错误是。 卷曲:(7)无法连接到本地主机端口9200:连接被拒绝
我想引擎停止工作了。我必须使用python与db mysql建立引擎连接。直到下面的代码,我一切都很好。
echo '{
"type":"jdbc",
"jdbc":{
"url":"jdbc:mysql://localhost:3306/ElasticSearchDatabase",
"user":"root",
"password":"",
"sql":"SELECT id as _id, id, name,email FROM test",
"index":"users",
"type":"users",
"autocommit":"true",
"metrics": {
"enabled" : true
},
"elasticsearch" : {
"cluster" : "servercluster",
"host" : "localhost",
"port" : 9300
}
}
}' | java -cp "/etc/elasticsearch/elasticsearch-jdbc-2.2.0.0/lib/*" -"Dlog4j.configurationFile=file:////etc/elasticsearch/elasticsearch-jdbc-2.2.0.0/bin/log4j2.xml" "org.xbib.tools.Runner" "org.xbib.tools.JDBCImporter"
该命令没有错误,但是当我卷曲localhost:9200时,连接被拒绝,就像运行该代码段之后,引擎停止工作。请告诉我如何解决。