Re: [freenet-support] Re: Can't access page

2005-11-22 Thread hans müller
Hi,

I tried what you suggested but with no success. Meanwhile I'm down to
maxNodeConnections=40 and maximumThreads=20 but still the same. I can't get
the page at port  and (also without trying to access that page) I find
these exceptions in the logfile:

java.lang.Exception: debug
at freenet.support.io.NIOInputStream.read(NIOInputStream.java:319)
at java.io.FilterInputStream.read(Unknown Source)
at freenet.session.FnpLink.negotiateOutbound(FnpLink.java:637)
at freenet.session.FnpLink.solicit(FnpLink.java:202)
at
freenet.session.FnpLinkManager.createOutgoing(FnpLinkManager.java:111)
at freenet.ConnectionJob.run(ConnectionJob.java:378)
at freenet.ConnectionJob.createConnection(ConnectionJob.java:78)
at
freenet.node.ConnectionOpener.checkpoint(ConnectionOpener.java:95)
at
freenet.node.states.maintenance.Checkpoint.checkpoint(Checkpoint.java:54)
at
freenet.node.states.maintenance.Checkpoint.received(Checkpoint.java:47)
at freenet.node.StateChain.received(StateChain.java:177)
at freenet.node.StateChain.received(StateChain.java:61)
at
freenet.node.StateChainManagingMessageHandler$ChainContainer.run(StateChainManagingMessageHandler.java:335)
at
freenet.node.StateChainManagingMessageHandler$ChainContainer.received(StateChainManagingMessageHandler.java:288)
at
freenet.node.StateChainManagingMessageHandler$ChainContainer.access$100(StateChainManagingMessageHandler.java:207)
at
freenet.node.StateChainManagingMessageHandler.handle(StateChainManagingMessageHandler.java:99)
at freenet.Ticker$Event.run(Ticker.java:325)
at
freenet.thread.YThreadFactory$YThread.run(YThreadFactory.java:285)
23.11.2005 08:23:46
(freenet.node.http.DistributionServlet$DistributionRequest, YThread-22,
NORMAL): RouteNotFound Fetching (running)
freenet:[EMAIL PROTECTED],uLq58BoeKATpIJFa8PCiJA as
freenet.exe for DistributionServlet
23.11.2005 08:23:49 (freenet.support.io.NIOInputStream, YThread-41, NORMAL):
waited more than 12ms in NIOIS.read() tcp/connection:
52489>85.76.130.228:3768,[EMAIL PROTECTED]:[EMAIL PROTECTED]
closing
java.lang.Exception: debug
at freenet.support.io.NIOInputStream.read(NIOInputStream.java:319)
at java.io.FilterInputStream.read(Unknown Source)
at freenet.session.FnpLink.negotiateOutbound(FnpLink.java:637)
at freenet.session.FnpLink.solicit(FnpLink.java:202)
at
freenet.session.FnpLinkManager.createOutgoing(FnpLinkManager.java:111)
at freenet.ConnectionJob.run(ConnectionJob.java:378)
at freenet.ConnectionJob.createConnection(ConnectionJob.java:78)
at
freenet.node.ConnectionOpener.checkpoint(ConnectionOpener.java:95)
at
freenet.node.states.maintenance.Checkpoint.checkpoint(Checkpoint.java:54)
at
freenet.node.states.maintenance.Checkpoint.received(Checkpoint.java:47)
at freenet.node.StateChain.received(StateChain.java:177)
at freenet.node.StateChain.received(StateChain.java:61)
at
freenet.node.StateChainManagingMessageHandler$ChainContainer.run(StateChainManagingMessageHandler.java:335)
at
freenet.node.StateChainManagingMessageHandler$ChainContainer.received(StateChainManagingMessageHandler.java:288)
at
freenet.node.StateChainManagingMessageHandler$ChainContainer.access$100(StateChainManagingMessageHandler.java:207)
at
freenet.node.StateChainManagingMessageHandler.handle(StateChainManagingMessageHandler.java:99)
at freenet.Ticker$Event.run(Ticker.java:325)
at
freenet.thread.YThreadFactory$YThread.run(YThreadFactory.java:285)


> --- Ursprüngliche Nachricht ---
> Von: Bob <[EMAIL PROTECTED]>
> An: support@freenetproject.org
> Betreff: [freenet-support] Re: Can't access page
> Datum: Tue, 22 Nov 2005 14:45:13 + (UTC)
> 
>  <[EMAIL PROTECTED]> writes:
> 
> > Hi,
> > 
> > I'm running the freenet-client on a dedicated and therefor headless
> server
> > (Fedora Core 3, JRE 1.5). But whenever I try to access the page at port
> 
> > I get an empty page and following messages in the freenet.log:
> > 
> --snip--
> 
> I think the stuff you posted is indicative of very high load, such that
> fred
> never manages to reply to you before timing out. Try :
> 
> - Decreasing maximumThreads, e.g. to  100  \__ in freenet.conf
> - Decreasing maxNodeConnections, e.g. to 150   /
> - Increasing maximum heap size (-Xmx parameter at the end of
> start-freenet.sh),
> Java 1.5 is faster but also more memory intensive. Since this is
> presumably a
> dedicated freenet box, you probably want to be quite generous here,
> especially
> if you have a large datastore (the index is kept in RAM.) Java will not 
> actually allocate the maximum unless it needs to.
> 
> There are more advanced optimisations that can be tried here, such as the
> -server flag, which will make freenet take longer to start but in theory
> run
> more efficiently.
> See http://www.fre

[freenet-support] Re: Can't access page

2005-11-22 Thread Bob
  writes:

> Hi,
> 
> I'm running the freenet-client on a dedicated and therefor headless server
> (Fedora Core 3, JRE 1.5). But whenever I try to access the page at port 
> I get an empty page and following messages in the freenet.log:
> 
--snip--

I think the stuff you posted is indicative of very high load, such that fred
never manages to reply to you before timing out. Try :

- Decreasing maximumThreads, e.g. to  100  \__ in freenet.conf
- Decreasing maxNodeConnections, e.g. to 150   /
- Increasing maximum heap size (-Xmx parameter at the end of start-freenet.sh),
Java 1.5 is faster but also more memory intensive. Since this is presumably a
dedicated freenet box, you probably want to be quite generous here, especially
if you have a large datastore (the index is kept in RAM.) Java will not 
actually allocate the maximum unless it needs to.

There are more advanced optimisations that can be tried here, such as the
-server flag, which will make freenet take longer to start but in theory run
more efficiently.
See http://www.freenethelp.org/html/MaintainingPermanentNodes.html

Restart freenet, since not everything can be changed on the fly. Wait 10-15
minutes before you try to do anything; load is always very high after 
(re)starting.

General performance tuning like disabling services you don't need can't hurt
either of course.

HTH,
Bob





[freenet-support] GrapeWine?

2005-11-22 Thread m0rtal frei
Hi there!
Can anyone tell me what's the real difference between FreeNet and
GrapeWine (http://www.grapevineproject.org/) ?

-- 
Best regards,
Alexander Nagorny

JabberID: [EMAIL PROTECTED]
ICQ: 5213510
Cellular: +38-050-296-1001

___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://emu.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]


[freenet-support] GrapeWine?

2005-11-22 Thread m0rtal frei
Hi there!
Can anyone tell me what's the real difference between FreeNet and
GrapeWine (http://www.grapevineproject.org/) ?

-- 
Best regards,
Alexander Nagorny

JabberID: m0rtal at jabber.ru
ICQ: 5213510
Cellular: +38-050-296-1001




[freenet-support] Re: Can't access page

2005-11-22 Thread Bob
 <[EMAIL PROTECTED]> writes:

> Hi,
> 
> I'm running the freenet-client on a dedicated and therefor headless server
> (Fedora Core 3, JRE 1.5). But whenever I try to access the page at port 
> I get an empty page and following messages in the freenet.log:
> 
--snip--

I think the stuff you posted is indicative of very high load, such that fred
never manages to reply to you before timing out. Try :

- Decreasing maximumThreads, e.g. to  100  \__ in freenet.conf
- Decreasing maxNodeConnections, e.g. to 150   /
- Increasing maximum heap size (-Xmx parameter at the end of start-freenet.sh),
Java 1.5 is faster but also more memory intensive. Since this is presumably a
dedicated freenet box, you probably want to be quite generous here, especially
if you have a large datastore (the index is kept in RAM.) Java will not 
actually allocate the maximum unless it needs to.

There are more advanced optimisations that can be tried here, such as the
-server flag, which will make freenet take longer to start but in theory run
more efficiently.
See http://www.freenethelp.org/html/MaintainingPermanentNodes.html

Restart freenet, since not everything can be changed on the fly. Wait 10-15
minutes before you try to do anything; load is always very high after 
(re)starting.

General performance tuning like disabling services you don't need can't hurt
either of course.

HTH,
Bob


___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://emu.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]