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 JuanJosePablos: http://wiki.apache.org/nutch/GettingNutchRunningWithJetty ------------------------------------------------------------------------------ All the commands are assume to be under the nutch_home Create a ant file called userjetty.xml wich this content: {{{ - <?xml version="1.0"?> <project name="Nutch" default="jetty"> + <property environment="env" /> <target name="setup"> <mkdir dir="etc"/> <get src="ftp://jetty.mortbay.org/pub/jetty-5.1.4/etc/jetty.xml" dest="etc/jetty.xml"/> @@ -23, +23 @@ <fileset dir="lib"> <include name="*.jar"/> </fileset> - <pathelement path="${env.CLASSPATH}" /> + <fileset dir="lib/jetty-ext"> + <include name="*.jar"/> + </fileset> <pathelement path="${env.JAVA_HOME}/lib/tools.jar" /> </classpath> </java> </target> </project> }}} - Creating configuration: - {{{ - mkdir logs; mkdir etc; cd etc - }}} -
