Quantcast
Channel: How do I find out version of currently running Solr? - Stack Overflow
Browsing latest articles
Browse All 9 View Live

Answer by GG2 for How do I find out version of currently running Solr?

From the command line of a Linux server running solr:sudo service solr statusDepending on your version of Linux, I imagine you might have to modify that to use systemctl instead of service, or other...

View Article



Answer by thePanz for How do I find out version of currently running Solr?

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

View Article

Answer by Vy Do for How do I find out version of currently running Solr?

Assumption, you use version 3.6, port 8080. Go tohttp://localhost:8080/solr/default/admin/registry.jspYou will see result:Solr Implementation Version: 3.6.0 1310449 - rmuir - 2012-04-06 11:34:07

View Article

Answer by Zac for How do I find out version of currently running Solr?

With a HTTP GET request to:yoursolrhost:8983/solr/admin/info/systemyou'll retrieve a structure in many different representations (xml, json, php, python,...).the lucene key of the structure contains...

View Article

Answer by amit for How do I find out version of currently running Solr?

You can simply go to your Solr Dashboard page as in URL http://localhost:8983/solr

View Article


Answer by beavis for How do I find out version of currently running Solr?

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'

View Article

Image may be NSFW.
Clik here to view.

Answer by James Lawruk for How do I find out version of currently running Solr?

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...

View Article

Answer by user195488 for How do I find out version of currently running Solr?

You need to query Solr using the SystemInfoHandler:http://lucene.apache.org/solr/api/org/apache/solr/handler/admin/SystemInfoHandler.html

View Article


How do I find out version of currently running Solr?

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

View Article

Browsing latest articles
Browse All 9 View Live




Latest Images