Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 372 Vote(s) - 3.53 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do I find out version of currently running Solr?

#1
Please tell me how can I determine the version number of currently running solr ?
Reply

#2
You need to query Solr using the SystemInfoHandler:

[To see links please register here]


Reply

#3
On the **Solr Admin** page click on **[INFO]**. The next screen will have the version.

(For me, the Solr admin page is located here: http://{host-name-or-ip}:{port}/solr/admin, I found I was dealing with an older version. Solr Specification Version: 1.4.0 Solr Implementation Version: 1.4.0 833479)

![info in Solr Admin][1]


[1]:
Reply

#4
solr admin "infos" button links to "admin/registry.jsp"

so you can get the version with :

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

#5
You can simply go to your Solr Dashboard page as in URL

[To see links please register here]

Reply

#6
With a HTTP GET request to:

yoursolrhost:8983/solr/admin/info/system

you'll retrieve a structure in many different representations (xml, json, php, python,...).

the `lucene` key of the structure contains version numbers.

For example, using json output:

[To see links please register here]


The `lucene` key looks like this:

"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"
},
Reply

#7
Assumption, you use version 3.6, port 8080. Go to

[To see links please register here]


You will see result:

Solr Implementation Version: 3.6.0 1310449 - rmuir - 2012-04-06 11:34:07
Reply

#8
You could use `http://localhost:8983/solr/admin/info/system?wt=json` to gather the details and Solr version too.

Tested on Solr v6.6.0
Reply

#9
From the command line of a Linux server running solr:
```
sudo service solr status
```

Depending on your version of Linux, I imagine you might have to modify that to use `systemctl` instead of `service`, or other means of calling the solr service.
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through