Hi all, I've been having some problems trying to get this to work. I started off with solr 4.9.1 and using the basic nutch tutorial at https://wiki.apache.org/nutch/NutchTutorial, followed the steps to integrate to solr very nicely. Then immediately upgraded to solr 6.0.1, and, in single node, worked great (which allowed to finish off some backend code). However, to secure solr with rule based authorization, it seems I need to move to cloud node. I followed the cloud documentation at https://cwiki.apache.org/confluence/display/solr/Getting+Started+with+SolrCloud, changing the collection name to nndcweb, and used the data_driven_schema_configs configuration.
So, based based on snippets related questions found on the web, I tried the following: bin/nutch index crawl/crawldb -linkdb crawl/linkdb -D solr.server.url= http://localhost/solr/nndcweb:8983/ -D solr.server.type=cloud -D solr.zookeeper.url=http://localhost:9983/ -dir crawl/segments/* -normalize and also: bin/nutch solrindex http://localhost/solr/nndcweb:8983 crawl/crawldb -linkdb crawl/linkdb -D solr.server.type=cloud -D solr.zookeeper.url= http://localhost:9983/ -dir crawl/segments/* -normalize Both result in a URISyntaxException, in the first case related to solr.server.url. Nothing else I've tried seems to work either. So, what is the correct way to get nutch indexed to the solr 6 cloud? Thanks for any help.. Tim

