Bryan A. Pendleton wrote:
When I use the latest build.xml, the jasper task doesn't run.
Is there a missing library that should be available to make this work for
ant? I'm using a debian-installed ant, with the ant-optional package also
installed. After a default "ant" build, there are no jsps in build/webapps.
The "compile:" ant job doesn't mention a jsp-compile task, either, all of
the lines of output are prefixed with "[javac]". Hitting
I strongly recommend installing ant from Apache. I've seen strange
problems before with the debian install. My ant shows:
ant -version
Apache Ant version 1.6.5 compiled on June 2 2005
Try the following:
svn co https://svn.apache.org/repos/asf/lucene/hadoop/trunk hadoop
cd hadoop
ant
.... copy attached hadoop-site.xml to conf ...
bin/start-all.sh
wget -O - http://localhost:50030/
Does that work for you?
Doug
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<!-- Put site-specific property overrides in this file. -->
<configuration>
<property>
<name>fs.default.name</name>
<value>localhost:5555</value>
</property>
<property>
<name>mapred.job.tracker</name>
<value>localhost:6666</value>
</property>
<property>
<name>dfs.replication</name>
<value>1</value>
</property>
</configuration>