Solr 8.1 tutorial: https://lucene.apache.org/solr/guide/8_1/solr-tutorial.html
Following the guide to where you have created the collection and checking the admin page, you get the same picture as shown in "Figure 1. SolrCloud Diagram" (collectionname = gettingstarted) <--- Next step is indexing the tech-products samples: solr-8.1.0:$ bin/post -c techproducts example/exampledocs/* But this fails, since the collectionname is "gettingstarted" Instead you have to index with bin/post -c gettingstarted example/exampledocs/* In earlier tutorials the collection name was indeed "techproducts", so it is the collection name that has changed. It is just me doing something wrong? It is hard to believe a such obvious error has not been corrected yet? It seems the 7.1 tutorial has the same error. /Thomas Egense