Re: [freenet-support] services does not start: No class given

2002-08-11 Thread Thomas Goebel

Hello,

now i have test it on a clean SuSE7.3 release with IBMJava2-JRE-1.3-127.

I have linked the /usr/lib/jdk1.3/ to /usr/lib/java.

Same Problem:

11.08.2002 12:34:35 (freenet.node.Main, main): loading service: fproxy
11.08.2002 12:34:35 (freenet.node.Main, main): Failed to load service:
fproxy
freenet.interfaces.ServiceException: No class given
at freenet.node.Main.loadService(Main.java:761)
at freenet.node.Main.startNode(Main.java:725)
at freenet.node.Main.main(Main.java:436)
11.08.2002 12:34:35 (freenet.node.Main, main): loading service:
nodestatus
11.08.2002 12:34:35 (freenet.node.Main, main): Failed to load service:
nodestatus
freenet.interfaces.ServiceException: No class given
at freenet.node.Main.loadService(Main.java:761)
at freenet.node.Main.startNode(Main.java:725)
at freenet.node.Main.main(Main.java:436)
11.08.2002 12:34:35 (freenet.node.Main, main): loading service: console
11.08.2002 12:34:35 (freenet.node.Main, main): Failed to load service:
console
freenet.interfaces.ServiceException: No class given
at freenet.node.Main.loadService(Main.java:761)
at freenet.node.Main.startNode(Main.java:725)
at freenet.node.Main.main(Main.java:436)
11.08.2002 12:34:36 (freenet.node.Node, main): Starting ticker..
11.08.2002 12:34:36 (freenet.node.Node, main): Starting interfaces..

Whats wrong?

I search on the system for the loadService and startNode class. I could
not find it.

Regards,
Thomas

Thomas Formella schrieb:
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Thomas Goebel wrote:
 | Hello,
 |
 | i have intalled freenet on SuSE8.0 (SUN_Java_SDK_1.4.0.0) and it will
 | not start.
 
 | I have set:
 |
 | export J2EE_HOME=/usr/java/j2sdk1.4.0_01
 | export JAVA_PATH=/usr/java/j2sdk1.4.0_01
 | export JAVA_HOME=$JAVA_PATH
 | export JAVAHOME=$JAVA_PATH
 |
 | PATH=$JAVA_PATH/bin:$HOME/bin:$J2EE_HOME/bin:$PATH
 | BASH_ENV=$HOME/.bashrc
 | export PATH BASH_ENV
 |
 Why so complicated ?
 
 I've only changed the symbolic link '/usr/lib/java' to the new jdk (on
 my system /usr/lib/jdk1.3) and if I start freenet with the
 'start-freenet.sh' start-script, it works (more or less ;-)
 
 BTW.: SuSE 7.3, IBM J2RE 1.3.0
 
 Regards,
 Thomas
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.0.6 (GNU/Linux)
 Comment: Using GnuPG with Beonex - http://enigmail.mozdev.org
 
 iD8DBQE9VXzStmpPJKuLS2URAmU2AKCAnJrJtJ08QYvDmKhOK11JEmssvwCg8s6F
 WOz3gEeTDhAaZ7DZKH3MDvI=
 =QqRB
 -END PGP SIGNATURE-
 
 ___
 support mailing list
 [EMAIL PROTECTED]
 http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support

___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support



Re: [freenet-support] services does not start: No class given

2002-08-11 Thread Mika Hirvonen

On Sun, 11 Aug 2002, Thomas Goebel wrote:

 Hello,
 
 now i have test it on a clean SuSE7.3 release with IBMJava2-JRE-1.3-127.
 
 I have linked the /usr/lib/jdk1.3/ to /usr/lib/java.
 
 Same Problem:
 
 11.08.2002 12:34:35 (freenet.node.Main, main): loading service: fproxy
 11.08.2002 12:34:35 (freenet.node.Main, main): Failed to load service:
 fproxy
 freenet.interfaces.ServiceException: No class given
 at freenet.node.Main.loadService(Main.java:761)
 at freenet.node.Main.startNode(Main.java:725)
 at freenet.node.Main.main(Main.java:436)
 11.08.2002 12:34:35 (freenet.node.Main, main): loading service:
 nodestatus
 11.08.2002 12:34:35 (freenet.node.Main, main): Failed to load service:
 nodestatus
 freenet.interfaces.ServiceException: No class given
 at freenet.node.Main.loadService(Main.java:761)
 at freenet.node.Main.startNode(Main.java:725)
 at freenet.node.Main.main(Main.java:436)
 11.08.2002 12:34:35 (freenet.node.Main, main): loading service: console
 11.08.2002 12:34:35 (freenet.node.Main, main): Failed to load service:
 console
 freenet.interfaces.ServiceException: No class given
 at freenet.node.Main.loadService(Main.java:761)
 at freenet.node.Main.startNode(Main.java:725)
 at freenet.node.Main.main(Main.java:436)
 11.08.2002 12:34:36 (freenet.node.Node, main): Starting ticker..
 11.08.2002 12:34:36 (freenet.node.Node, main): Starting interfaces..
 
 Whats wrong?

Check your freenet.conf. There should be lines that tell the node which 
classes to use when starting services. For example:

nodestatus.class=freenet.client.http.NodeStatusServlet
fproxy.class=freenet.client.http.FproxyServlet
nodeinfo.class=freenet.node.http.NodeInfoServlet

Those three lines define the classes to use for those services. You 
should also specify the ports to use. For example:

nodestatus.port=8890
fproxy.port=
nodeinfo.port=8889

You can also specify the hosts allowed to connect to a service. By 
default, only localhost is allowed. For example:

nodestatus.allowedHosts=10.1.2.3
fproxy.allowedHosts=*
nodeinfo.port=host.domain.example

Those three lines allow only host 10.1.2.3 to use nodestatus, 
allow everyone to use fproxy and allow host host.domain.example to use the 
nodeinfo service.

The console service is a bit more complicated, because it's actually three 
services in one: datastore console, filesystem console and routing table 
console. To set it up, you'll need the following lines:

console.class=freenet.interfaces.servlet.MultipleHttpServletContainer
console.port=8891
console.params.servlet.1.uri=/ds
console.params.servlet.1.class=freenet.node.ds.DSConsole
console.params.servlet.1.name=DataStore Console
console.params.servlet.2.uri=/fs
console.params.servlet.2.class=freenet.fs.dir.FSConsole
console.params.servlet.2.name=FileSystem Console
console.params.servlet.3.uri=/rt
console.params.servlet.3.class=freenet.node.rt.RTConsole
console.params.servlet.3.name=Routing Table Console

To use it, point your browser to http://localhost:8891/ds, 
http://localhost:8891/fs or http://localhost:8891/rt, respectively.

-- 
Mika Hirvonen [EMAIL PROTECTED]
  http://nightwatch.mine.nu/


___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support



[freenet-support] freenet is running - but what keys can i use?

2002-08-11 Thread Thomas Goebel

Hallo,

i have installed freenet on my linux box, and it works fine. 
But i don`t know the keys from the websites in the freenet network.

I found some websites with links to freenet key index, but all links
from
those sites will not work. So i don`t know what sites ar in the freenet
network.
The only index page i found is the freenet The Freedom Engine
(nearly 90%
of the links doesn`t work)

Is there any other aktiv freenet key index?

Regards,
Thomas

___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support



Re: [freenet-support] FW: Hi there

2002-08-11 Thread Greg Wooledge

Tilz ([EMAIL PROTECTED]) wrote:

 I've just downloaded your Freenet program and was wondering if you
 can provide me with a newbie tour on how to use it.
 
 I understand the concept of using KEYs to access different site but I found
 the examples quite limited.
 
 Eg: Da Gi, Techgrounds, Content of Evil, etc...

The site you need to get to is called Nubile.  It has good
newbie-level technical explanations of how Freenet keys work, how
to publish a site in Freenet, etc.  There's a link to Nubile from
The Freedom Engine, which is one of the 4 sites listed on the
gateway page.

If you can't get TFE for some reason, Nubile's direct address is
freenet:SSK@qe3ZRJg1Nv1XErADrz7ZYjhDidUPAgM/nubile/10//.  (It's
an edition-based site, rather than a daily site, so the trailing
/10// can be replaced by a lower number to get previous editions.
If there are any future editions, they will have a higher number.)

I do hope the Nubile author publishes an update some day.  There
is at least one part of Nubile edition 10 that's outdated (change
in the Java class names when Freenet went from upper-case-F to
lower-case-f.)

-- 
Greg Wooledge  |   Truth belongs to everybody.
[EMAIL PROTECTED]  |- The Red Hot Chili Peppers
http://wooledge.org/~greg/ |



msg00963/pgp0.pgp
Description: PGP signature


Re: [freenet-support] my view on the project...

2002-08-11 Thread Greg Wooledge

Peter Koellner ([EMAIL PROTECTED]) wrote:

 you do not make any progress, because as good as nobody is able to help with
 the development for lack of documentation and useable test environments.

Actually, there *is* a test environment.  It's called the watchme
network, and is a secondary (incompatible) Freenet network set up
in such a way that instead of maintaining anonymity, watchme reports
copious information about what's happening.  If you want more
information about it, I'd suggest asking on the development list,
or the IRC channel.

-- 
Greg Wooledge  |   Truth belongs to everybody.
[EMAIL PROTECTED]  |- The Red Hot Chili Peppers
http://wooledge.org/~greg/ |



msg00964/pgp0.pgp
Description: PGP signature