Getting started with Nutch and Solr: where's Solr's conf/ directory? -


i'm trying started nutch (v 1.7) , solr (v 4.3.1). i'm following tutorial: http://wiki.apache.org/nutch/nutchtutorial

i'm confused step 6 i'm told copy nutch schema file 1 of solr's directories.

6. integrate solr nutch

we have both nutch , solr installed , setup correctly. , nutch created crawl data seed url(s). below steps delegate searching solr links searchable:

cp ${nutch_runtime_home}/conf/schema.xml ${apache_solr_home}/example/solr/conf/

the problem ${apache_solr_home}/example/solr/conf/ doesn't exist. /example/solr/ contains

readme.txt   bin      collection1  solr.xml zoo.cfg 

does know how proceed? should create ./example/solr/conf directory , copy nutch files that?

many help.

since on solr 4.x, have conf inside collection1, should able following:

cp ${nutch_runtime_home}/conf/schema.xml ${apache_solr_home}/example/solr/collection1/conf/ 

Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -