Thanks for the replays. We solved the problem, it turned out that we had not
set up the Zookeeper servlet, adding the following to web.xml solved it:

   <servlet>
        <servlet-name>Zookeeper</servlet-name>
       
<servlet-class>org.apache.solr.servlet.ZookeeperInfoServlet</servlet-class>
    </servlet>
 
    <servlet-mapping>
        <servlet-name>Zookeeper</servlet-name>
        <url-pattern>/zookeeper</url-pattern>
    </servlet-mapping>

We are using Jetty, which uses its own web.xml, and not the web.xml provided
by the Solr, found in the 'overlays' directory.



--
View this message in context: 
http://lucene.472066.n3.nabble.com/SolrCloud-Cloud-tab-on-admin-dashboard-not-loading-tp4163526p4163689.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to