Problem Statement
Installed Sitecore 10.1 on local via SIA and stuck final step of verification of SolR connection
Solution
After SolR installation, I noticed that solr-ssl.keystore files are not present under solr\sc101solr-8.4.0\server\etc folder. To fix this followed below steps
- Installed Java
- Downloaded solrssl.ps1 file from Setting up Solr with SSL and make the changes in this file as per local configurations
- Copy this file in Install directory and executed PowerShell script as below
- PS C:\Data\Sitecore\SC10.1Install> .\solrssl.ps1 -KeyStorefile 'C:\Data\Sitecore\SC10.1Install\SC 10\solr\sc101solr-8.4.0\server\etc\solr-ssl.keystore.jks' -storetype pkcs12
- Reference: SO post
- solr-ssl.keystore files created solr\sc101solr-8.4.0\server\etc folder
- Start SolR
- C:\Data\Sitecore\SC10.1Install\SC 10\solr\sc101solr-8.4.0\bin>solr start -p 9899
SolR started working now!
Comments
Post a Comment