Re: solr can't find my config set when creating a new collection

2018-04-30 Thread Erick Erickson
The error message you were getting was that "multiValued" must be camel-cased multivalued .vs. multiValued This last one is correct. On Mon, Apr 30, 2018 at 6:25 AM, THADC wrote: > ok, I have fixed my issue. I needed to delete the config set first, so I did: > > http://localhost:8983/solr/admin/

Re: solr can't find my config set when creating a new collection

2018-04-30 Thread THADC
ok, I have fixed my issue. I needed to delete the config set first, so I did: http://localhost:8983/solr/admin/configs?action=DELETE&name=timConfig , then I ran: ./bin/solr zk upconfig -n timConfig -d /home/tim/solr-7.3.0/server/solr/configsets/timConfig/ -z localhost:2181 , then tried creati

Re: solr can't find my config set when creating a new collection

2018-04-30 Thread THADC
thanks, I got further this time after first uploading. I ran: ./bin/solr zk upconfig -n timConfig -d /home/tim/solr-7.3.0/server/solr/configsets/timConfig/ -z localhost:2181 However, I then got an error when trying to create the collections again: responseHeader status 0 QTime 3255

Re: solr can't find my config set when creating a new collection

2018-04-29 Thread Ganesh Sethuraman
A Step before creation the schema, the config needs to be uploaded to the zoo keeper. You might want to upconfig bin/solr zk upconfig -n -d more details here... https://lucene.apache.org/solr/guide/6_6/using-zookeeper-to-manage-configuration-files.html Regards Ganesh On Sun, Apr 29, 2018 at 7:

solr can't find my config set when creating a new collection

2018-04-29 Thread THADC
Hi, I created (or thought I was) a new config set by copying the directory ~server/solr/configset/_default/* to a new configset: ~/server/solr/configset/timConfig. I then added a couple of new indexes to the managed-schema file. I then tried to create a new collection assigned to my new config se