[EMAIL PROTECTED] wrote: > Hello, > > At first thanks to Richard, because I am no able to harvest some metadata. > Now, > I am trying to install and configure longwell, and I have problems when > trying to run: > > ./longwell -p ../dwell/ -r ../oai2rdf/data/ > > beyond other things I see the following output: > > 2007-11-21 12:39:21.639::WARN: failed [EMAIL PROTECTED]:8080 > java.net.BindException: Address already in use > at sun.nio.ch.Net.bind(Native Method) > at > sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:119) > at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:59) > ... > ...
Are there any other errors during loading? Port availability is the last point of failure before Longwell will become available, so all this tells us it that you have another service running on your computer on port 8080. Jetty (Java web server built into Maven) by default runs on port 8080. If it had worked, you'd then view longwell at http://localhost:8080/ - since it didn't, you can either shut down the service that currently runs there or you can set the port using either an environment variable or by editing the scripts: % JETTY_PORT=8081 ./longwell -p ../dwell [...etc...] or edit the ./longwell script and change the default value of JETTY_PORT to something else (not really recommended as it makes keeping up to date with the repository a pain). > it seems that some server isnt correctly configured. I already made sure that > longwell.url is not specified ! > > if I specify the -c option then obviously the respective configuration file > or something like that isnt found: > > ./longwell -p ../dwell/ -c dwell -r ../oai2rdf/data/ > > 2007-11-21 10:54:43.011::INFO: Logging to STDERR via > org.mortbay.log.StdErrLog > 2007-11-21 10:54:43.084::INFO: jetty-6.1.6rc1 > 2007-11-21 10:54:43.214::INFO: No Transaction manager found - if your webapp > requires one, please configure one. > 2007-11-21 10:54:43.508::WARN: failed Longwell > javax.servlet.ServletException: javax.servlet.ServletException: Could not > find longwell configuration I don't know what's going on there. Is ../dwell/ http://simile.mit.edu/repository/longwell-demos/dwell/ ? The only configuration in that directory is called 'configuration', not 'dwell'. -- Ryan Lee [EMAIL PROTECTED] MIT CSAIL Research Staff http://simile.mit.edu/ http://people.csail.mit.edu/ryanlee/ _______________________________________________ General mailing list [email protected] http://simile.mit.edu/mailman/listinfo/general
