How can I find out the version of the currently running solr

Please tell me how to determine the version number of the currently running solr?

+51
solr
Mar 07
source share
6 answers

On the Solr Admin page, press [INFO] . The next screen will have a version.

(For me, here is the Solr administration page: http: // {host-name-or-ip}: {port} / solr / admin, I found myself dealing with an old version. Solr specification version: 1.4.0 Solr Version implementation: 1.4.0 833479)

info in Solr Admin

+56
Jun 01 '11 at 16:52
source share

With an HTTP GET request:

yoursolrhost:8983/solr/admin/info/system 

you will get the structure in many different views (xml, json, php, python, ...).

The lucene key of the structure contains version numbers.

For example, using json output:

 http://yoursolrhost:8983/solr/admin/info/system?wt=json 

The lucene key is as follows:

 "lucene": { "solr-spec-version": "4.6.0", "solr-impl-version": "4.6.0 1543363 - simon - 2013-11-19 11:16:33", "lucene-spec-version": "4.6.0", "lucene-impl-version": "4.6.0 1543363 - simon - 2013-11-19 11:05:50" }, 
+20
Mar 18 '14 at 13:14
source share

link solr admin "infos" links to "admin / registry.jsp"

so that you can get the version with:

wget -O- " http: //solr_ip_adress.lan: 8080 / solr / admin / registry.jsp " | grep 'solr-spec-version'

+11
Sep 25 '13 at 8:50
source share
+5
Mar 07 '10 at 3:52
source share

You can simply go to your Solr account page as shown in the URL

 http://localhost:8983/solr 
+2
Feb 19 '14 at 9:23
source share

Suppose you are using version 3.6, port 8080. Go to http: // localhost: 8080 / solr / default / admin / registry.jsp

You will see the result:

 Solr Implementation Version: 3.6.0 1310449 - rmuir - 2012-04-06 11:34:07 
0
Jul 13 '17 at 7:04 on
source share



All Articles