On 8/22/2024 11:38, Raju Vaddeh wrote:
Below are the steps we have performed on the local solr environment for
the patch install.
*1. Clone the solr repo*
git clone GitHub - apache/solr: Apache Solr open-source search software
<https://github.com/apache/solr.git>
There's your problem right there. You are cloning the Solr repo, which
does not have Solr 8.x. It only has code for Solr 9.0 and later.
If you instead clone the lucene-solr repo, your other steps will work.
git clone https://github.com/apache/lucene-solr.git
You really should upgrade to at least 8.11.3 if not the latest 9.x
version. Version 8.1.1 was released five years ago.
Thanks,
Shawn