Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

using Solr with IIS [closed]

We are going to use solr as our search server but as you know solr is based on java and apache server and our database is MSSQL and our webserver is IIS. Could you possible suggest me the best way to incorporate java apache asp.net and IIS?

Best

like image 483
Mersad Avatar asked Feb 21 '23 20:02

Mersad


1 Answers

You cannot deploy Solr inside IIS because it requires a servlet container. Instead you can deploy solr in any one of the below servelt containers

  • Glassfish
  • JBoss
  • Jetty (default, included into solr package)
  • Resin
  • Tomcat
  • Weblogic
  • WebSphere

You can find the in-depth details about each deployment here SolrInstall

Then you can communicate with solr from .net using either one of these drivers(clients)

  • solrnet
  • SolrSharp

You dont need to worry about IIS at all.

like image 92
RameshVel Avatar answered Mar 03 '23 15:03

RameshVel