我正在尝试实施solr cloud,然后执行 http://myjeeva.com/solrcloud-cluster-single-collection-deployment.html 中的步骤 .

我遵循的步骤:创建了3个节点,即外部zokkepre,其工作正常 . 一个是领导者,另外两个是粉丝 . 我将solr部署到tomcat和其他配置,如博客文章中所述 . 在tomcat上成功部署solr后,我尝试创建了shrads,但它给出了错误

prashant@prashant-desktop:~$ curl 'http://localhost:7070/solr/admin/collections?action=CREATE&name=profiles&numShards=5&replicationFactor=2&maxShardsPerNode=5'
<?xml version="1.0" encoding="UTF-8"?>
<response>
<lst name="responseHeader"><int name="status">0</int><int name="QTime">16623</int></lst><lst name="failure"><str>org.apache.solr.client.solrj.SolrServerException:IOException occured when talking to server at: http://solr1.example.org:9090/solr</str><str>org.apache.solr.client.solrj.SolrServerException:IOException occured when talking to server at: http://solr1.example.org:7070/solr</str><str>org.apache.solr.client.solrj.SolrServerException:IOException occured when talking to server at: http://solr1.example.org:9090/solr</str><str>org.apache.solr.client.solrj.SolrServerException:IOException occured when talking to server at: http://solr1.example.org:7070/solr</str><str>org.apache.solr.client.solrj.SolrServerException:IOException occured when talking to server at: http://solr1.example.org:9090/solr</str><str>org.apache.solr.client.solrj.SolrServerException:IOException occured when talking to server at: http://solr1.example.org:9090/solr</str><str>org.apache.solr.client.solrj.SolrServerException:IOException occured when talking to server at: http://solr1.example.org:7070/solr</str><str>org.apache.solr.client.solrj.SolrServerException:IOException occured when talking to server at: http://solr1.example.org:7070/solr</str><str>org.apache.solr.client.solrj.SolrServerException:IOException occured when talking to server at: http://solr1.example.org:7070/solr</str><str>org.apache.solr.client.solrj.SolrServerException:IOException occured when talking to server at: http://solr1.example.org:9090/solr</str></lst>
</response>

我失踪的地方?