You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by Apache Wiki <wi...@apache.org> on 2007/03/05 07:43:48 UTC

[Nutch Wiki] Update of "NutchTutorial" by RicardoJMendez

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Nutch Wiki" for change notification.

The following page has been changed by RicardoJMendez:
http://wiki.apache.org/nutch/NutchTutorial

The comment on the change is:
Included omitted crawldb reference when indexing, searching from command line.

------------------------------------------------------------------------------
  
  To index the segments we use the index command, as follows:
  
- {{{ bin/nutch index indexes crawl/linkdb crawl/segments/* }}}
+ {{{ bin/nutch index indexes crawl/crawldb crawl/linkdb crawl/segments/* }}}
  
  Now we're ready to search!
  
  == Searching ==
+ 
+ Simplest way to verify the integrity of your crawl is to launch NutchBean from command line:
+ 
+ bin/nutch org.apache.nutch.searcher.NutchBean apache
+ 
+ After you have verified that the above command returns results you can proceed to setting up the web interface. 
  
  To search you need to put the nutch war file into your servlet container. (If instead of downloading a Nutch release you checked the sources out of SVN, then you'll first need to build the war file, with the command ant war.)