无法让Solr 4.8与Tomcat 7和Ubuntu 12.04一起使用

时间:2014-05-06 19:17:18

标签: ubuntu solr tomcat7

我正在尝试在Ubuntu 12.04服务器上运行Tomcat 7下的Solr 4.8,可以使用sunspot_rails gem从Rails 4应用程序访问。

目前我只是使用Solr 4.8中的多核示例进行测试,以验证它是否使用默认配置。

Tomcat运行正常(curl localhost:8080返回“它正在工作”页面),我在Tomcat或Solr日志中看不到任何错误。但curl localhost:8080/solr不会返回任何内容,curl localhost:8080/solr/update会返回The requested resource (/solr/update) is not available.(我在localhost上使用curl,因为我无法远程访问Tomcat 7管理员或Solr管理员。)

我已将示例中的solr.war文件复制到多核,并将所有jar文件和log4j.properties复制到tomcat7 / lib中(基本上只是按照此处的说明进行操作,但当然是4.8 {{3} }):

sudo cp /usr/share/solr/example/webapps/solr.war /usr/share/solr/example/multicore/solr.war

sudo cp -r solr/example/lib/ext/* /usr/share/tomcat7/lib

sudo cp -r solr/example/resources/log4j.properties /usr/share/tomcat7/lib

我还将多核文件夹的所有者设置为tomcat7:

sudo chown -R tomcat7 /usr/share/solr/example/multicore

以下是我的配置文件:

/ var / lib / tomcat7 / conf / Catalina / localhost中的

solr.xml

<Context docBase="/usr/share/solr/example/multicore/solr.war" debug="0" privileged="true" allowLinking="true" crossContext="true">
  <Environment name="solr/home" type="java.lang.String" value="/usr/share/solr/example/multicore" override="true" />
</Context>
/ usr / share / solr / example / multicore中的

solr.xml

<solr persistent="false">
  <cores adminPath="/admin/cores" host="${host:}" hostPort="${jetty.port:8983}" hostContext="${hostContext:solr}">
    <core name="core0" instanceDir="core0" />
    <core name="core1" instanceDir="core1" />

    <shardHandlerFactory name="shardHandlerFactory" class="HttpShardHandlerFactory">
      <str name="urlScheme">${urlScheme:}</str>
    </shardHandlerFactory>
  </cores>
</solr>

我已尝试将hostPort更改为"${jetty.port:8080}"或仅"8080",但这似乎没有帮助。

任何人都知道我能做些什么才能让它发挥作用?

2 个答案:

答案 0 :(得分:7)

好的,终于让它在这里工作了。

这就是我的所作所为:

1)我再次下载Solr 4.8,解压缩并移至/usr/share/solr

2)我将solr.war复制到solr示例而不是多核示例中:

sudo cp /usr/share/solr/example/webapps/solr.war /usr/share/solr/example/solr/solr.war

3)然后我复制了jar和日志文件:

sudo cp -r solr/example/lib/ext/* /usr/share/tomcat7/lib
sudo cp -r solr/example/resources/log4j.properties /usr/share/tomcat7/lib

4)我将/usr/share/tomcat7/lib/log4j.properties中的日志路径设置为(然后创建文件):

solr.log=/usr/share/solr

touch solr.log

(在/ usr / share / solr /内)

5)我在solr.xml /var/lib/tomcat7/conf/Catalina/localhost中添加了以下内容:

<?xml version="1.0" encoding="UTF-8"?>
<Context docBase="/usr/share/solr/example/solr/solr.war" debug="0" crossContext="true">
  <Environment name="solr/home" type="java.lang.String" value="/usr/share/solr/example/solr" override="true" />
</Context>

6)我在/usr/share/solr/example/solr/solr.xml中将hostPort更改为8080:

<int name="hostPort">8080</int>

7)最后我将用户** tomcat7 设置为/ usr / share / solr文件夹的所有者:

sudo chown -R tomcat7 /usr/share/solr

这可能会被清理一下,从Solr发行版中删除不必要的文件和示例,但至少它让我开始运行。

对于那些想要与sunspot_rails gem一起使用的人,那么你需要将schema.xml里面的/usr/share/solr/example/solr/collection1/conf文件替换为Rails项目中的sunspot.yml文件,并为你的{{1}做类似的事情。文件:

production:
  solr:
    hostname: localhost
    port: 8080
    log_level: WARNING
    path: /solr

<强>更新

添加我的完整solr.xml文件以供参考:

<solr>

  <solrcloud>
    <str name="host">${host:}</str>
    <int name="hostPort">8080</int>
    <str name="hostContext">${hostContext:solr}</str>
    <int name="zkClientTimeout">${zkClientTimeout:30000}</int>
    <bool name="genericCoreNodeNames">${genericCoreNodeNames:true}</bool>
  </solrcloud>

  <shardHandlerFactory name="shardHandlerFactory"
    class="HttpShardHandlerFactory">
    <int name="socketTimeout">${socketTimeout:0}</int>
    <int name="connTimeout">${connTimeout:0}</int>
  </shardHandlerFactory>

</solr>

答案 1 :(得分:0)

我也使用相同的东西和相同的网站引用,即使我也有同样的问题,因为solr.xml不应该在“/ var / lib / tomcat7 / conf / Catalina / localhost:”

将solr.xml复制到“/ usr / share / tomcat7 / conf / Catalina / localhost” 并重新启动apache tomcate并再试一次

希望这对你有用