Reputation: 139
I am very new to solr cloud and now integration solr cloud with external zookeeper.
I want to run 4 solr cores on 4 different server and manage by zookeeper.
So, I run solr cores on 4 different ip servers with different ports, 8983,8984,8985,8986 and bind with zookeeper. and it okay.
But when I create collection with following commend in one of core
/opt/solr/bin/solr create -c articles -s 2 -rf 2
I got Error. because of remote server. but when I create 4 nodes in same ip with different port, it okay. Is there any command or any way to create 4 remote solr colres in solr cloud mode?
Upvotes: 2
Views: 1433
Reputation: 1
First of all check if cluster is configured correctly. Go to localhost:8983/solr/admin/collections?action=CLUSTERSTATUS and check if all 4 nodes are alive.
Then, have you tried to create the collection using the admin page?
Go to http://localhost:8983/solr and then go to Collections.
Let me know if this works.
Upvotes: 0