# Pastebin jBFV5BsE solr@solr1:~$ /opt/solr/releases/current/bin/solr create_collection -n artist -rf 2 -c artist Re-using existing configuration directory artist Created collection 'artist' with 1 shard(s), 2 replica(s) with config-set 'artist' solr@solr1:~$ curl -X POST -H 'Content-Type: application/json' 'http://localhost:8983/solr/artist/update' --data-binary @artist.json { "responseHeader":{ "rf":2, "status":0, "QTime":349 } } } solr@solr2:~$ curl 'http://localhost:8983/solr/artist/select?q=test&wt=json' { "responseHeader":{ "zkConnected":true, "status":0, "QTime":59, "params":{ "q":"test", "wt":"json" } }, "response":{ "numFound":1, "start":0, "maxScore":11.3268795, "numFoundExact":true, "docs":[{ "_store":"Test ArtistArtist, TestmaleGBUnited KingdomUnited KingdomfalseUnited KingdomUnited KingdomfalseUnited KingdomUnited KingdomfalseYet Another Test Artist2008-01-022009-03-04true", "score":11.3268795 }] } }