简易的搜索引擎搭建
我的配置:
Nutch:1.2
Tomcat:7.0.57
1 Nutch设置
修改Nutch配置
1.1 修改conf/nutch-site.xml
1 <?xml version="1.0"?> 2 <?xml-stylesheet type="text/xsl" href="configuration.xsl"?> 3 4 <!-- Put site-specific property overrides in this file. --> 5 6 <configuration> 7 8 <!--property> 9 <name>storage.data.store.class</name> 10 <value>org.apache.gora.hbase.store.HBaseStore</value> 11 <description>Default class for storing data</description> 12 </property> 13 <property> 14 <name>http.agent.name</name> 15 <value>xxx0624-ThinkPad-Edge</value> 16 </property--> 17 18 <property> 19 <name>http.agent.name</name> 20 <value>nutch1.0</value> 21 </property> 22 23 <property> 24 <name>plugin.folders</name> 25 <value>./plugins</value> 26 </property> 27 28 </configuration>