nutch、solr 和 ubuntu 服务器 12.04lts

nutch、solr 和 ubuntu 服务器 12.04lts

我使用 Ubuntu 服务器 12.04lts,我想知道哪个版本的 nutch 和 solr 与它兼容。

有什么解决办法吗?

答案1

Nutch 1.5 和 Solr 3.6.0 兼容。

如何:

1)安装jdk

sudo apt-get install openjdk-7-jdk

2)下载并解压Solr

sudo mkdir ~/tmp/solr
cd ~/tmp/solr
wget http://mirror.lividpenguin.com/pub/apache/lucene/solr/3.6.0/apache-solr-3.6.0.tgz
tar -xzvf apache-solr-3.6.0.tgz
*default jetty in solr, try to run java -jar start.jar* shutdown Ctrl-C

查看http://localhost:8983/solr

3)下载并解压Nutch

sudo mkdir ~/tmp/nutch
cd ~/tmp/nutch
wget  http://mirror.rmg.io/apache/nutch/1.5/apache-nutch-1.5-bin.tar.gz
tar -xzvf apache-nutch-1.5-bin.tar.gz

4)配置Nutch

chmod +x bin/nutch
export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-i386

在 conf/nutch-site.xml 中添加

<property>
 <name>http.agent.name</name>
 <value>My Nutch Spider</value>
</property>

出口

mkdir -p urls
cd urls
touch seed.txt
nano seed.txt

添加要抓取的 URL,例如

http://nutch.apache.org/

在 conf/regex-urlfilter.txt 中替换

# accept anything else
+.

使用与要抓取的域相匹配的正则表达式。例如,如果您希望将抓取限制在 nutch.apache.org 域,则该行应为:

+^http://([a-z0-9]*\.)*nutch.apache.org/

5)配置Solr

 ~/tmp/solr/apache-solr-3.6.0/example/solr/conf
schema.xml add the following

<fieldType name="text" class="solr.TextField"
            positionIncrementGap="100">
            <analyzer>
                <tokenizer class="solr.WhitespaceTokenizerFactory"/>
                <filter class="solr.StopFilterFactory"
                    ignoreCase="true" words="stopwords.txt"/>
                <filter class="solr.WordDelimiterFilterFactory"
                    generateWordParts="1" generateNumberParts="1"
                    catenateWords="1" catenateNumbers="1" catenateAll="0"
                    splitOnCaseChange="1"/>
                <filter class="solr.LowerCaseFilterFactory"/>
                <filter class="solr.EnglishPorterFilterFactory"
                    protected="protwords.txt"/>
                <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
            </analyzer>
        </fieldType>


<field name="digest" type="text" stored="true" indexed="true"/>
<field name="boost" type="text" stored="true" indexed="true"/>
<field name="segment" type="text" stored="true" indexed="true"/>
<field name="host" type="text" stored="true" indexed="true"/>
<field name="site" type="text" stored="true" indexed="true"/>
<field name="content" type="text" stored="true" indexed="true"/>
<field name="tstamp" type="text" stored="true" indexed="false"/>
<field name="url" type="string" stored="true" indexed="true"/>
<field name="anchor" type="text" stored="true" indexed="false" multiValued="true"/>

change <uniqueKey>id</uniqueKey> to
<uniqueKey>url</uniqueKey> 

in solrconfig.xml add
<requestHandler name="/nutch" class="solr.SearchHandler" >
    <lst name="defaults">
       <str name="defType">dismax</str>
       <str name="echoParams">explicit</str>
       <float name="tie">0.01</float>
       <str name="qf">
         content^0.5 anchor^1.0 title^1.2
       </str>
       <str name="pf">
         content^0.5 anchor^1.5 title^1.2 site^1.5
       </str>
       <str name="fl">
       url
       </str>
       <int name="ps">100</int>
       <bool name="hl">true</bool>
       <str name="q.alt">*:*</str>
<str name="hl.fl">title url content</str>
<str name="f.title.hl.fragsize">0</str>
<str name="f.title.hl.alternateField">title</str>
<str name="f.url.hl.fragsize">0</str>
<str name="f.url.hl.alternateField">url</str>
<str name="f.content.hl.fragmenter">regex</str>
</lst>
</requestHandler>

6)运行Nutch爬虫并在Solr中建立索引(确保Solr已经启动)

bin/nutch crawl urls -solr http://localhost:8983/solr/ -depth 3 -topN 5

检查索引文件@http://localhost:8983/solr

来源

相关内容