On 7/22/2019 12:55 PM, Siva Tallapaneni wrote:
When I try to create a collection I'm running into issues, Following is the
exception I'm seeing
<snip>
HTTP/2 + SSL is not support in Java 8.
Configure Solr with HTTP/1.1 + SSL
Those lines are telling you what's wrong. Java 8 cannot do SSL
connections with HTTP/2. The client that is being used by the command
you're running is one that does HTTP/2.
You have a few choices:
1) Upgrade to a later major Java version. I would recommend Java 11.
2) Use HTTP/1.1 instead of HTTP/2. Don't know if bin/solr in 8.1.1 can
do this.
3) Disable SSL.
4) Do the collection creation manually:
4a) upload the config to ZK
4b) use the collections API to create, possibly with a browser.
Thanks,
Shawn