Zuriel <[EMAIL PROTECTED]> writes: > > trying to use freenet for the first time and I'm having some trouble, > its probably due to my firewall but I'm not sure. I've tried > disabling it and edit the freenet.ini file but it still doesn't work. > here is the log file I have.
Your personal firewall is a fairly likely culprit, yeah. It seems to be failing when it tries to start listening for connections. Under the circumsatances this should only happen if something is already bound on that port, or if something like a personal firewall is preventing it from binding to it. Try opening a command prompt and doing "netstat -an". If you see a line like "TCP 0.0.0.0:ZZZZ 0.0.0.0:0 LISTENING" where ZZZZ is whatever your listenPort is (it's in freenet.ini, don't post it for anonymity reasons) then something (maybe a zombie freenet) is already bound to the port. Do the same check for 8888 (web interface port) and 8481 (Freenet Client Protocol). If any of them are bound, try to stop/reconfigure whatever is using them and try again. Alternatively you can change these ports in freenet.ini but this can cause hassle later e.g. clients expecting to find the node on 8481, so change the other stuff if you can. If it's not that then review your personal firewall settings/logs, from its point of view it will be the Java runtime javaw.exe that needs to be allowed to "act as a server" in zonealarm-speak. > Jun 29, 2005 11:11:26 PM (freenet.node.Main, main, NORMAL): Starting > Freenet (Fred) 0.5 node, build #5103 on JVM Sun Microsystems > Inc.:Java HotSpot(TM) Client VM:1.4.1_03-b02 > INFO: Native CPUID library > 'freenet/support/CPUInformation/jcpuid-x86-windows.dll' loaded from > resource > INFO: Optimized native BigInteger library > 'net/i2p/util/jbigi-windows-pentium4.dll' loaded from resource > Jun 29, 2005 11:11:27 PM (freenet.node.Main, main, NORMAL): loading > node keys: node > Jun 29, 2005 11:11:27 PM (freenet.node.Main, main, NORMAL): Read node > file > Jun 29, 2005 11:11:27 PM (freenet.node.Main, main, NORMAL): starting > filesystem > Jun 29, 2005 11:11:27 PM (freenet.node.Main, main, NORMAL): loading > data store > Jun 29, 2005 11:11:27 PM (freenet.node.Main, main, NORMAL): loading > routing table > Jun 29, 2005 11:11:27 PM (freenet.node.Main, main, NORMAL): From > output: 49152.0 > Jun 29, 2005 11:11:27 PM (freenet.node.Main, main, NORMAL): Setting > default initTransferRate to 49152.0 > Jun 29, 2005 11:11:29 PM (freenet.node.Main, main, NORMAL): Created > new NGRT > Jun 29, 2005 11:11:29 PM (freenet.node.Main, main, NORMAL): Loaded > stats > Jun 29, 2005 11:11:29 PM (freenet.node.Main, main, NORMAL): loading > temp bucket factory > Jun 29, 2005 11:11:29 PM (freenet.node.Main, main, NORMAL): loaded > temp bucket factory > Jun 29, 2005 11:11:29 PM (freenet.node.Main, main, NORMAL): Loaded > bucket factory > Jun 29, 2005 11:11:29 PM (freenet.node.Main, main, NORMAL): not > seeding routing table > Jun 29, 2005 11:11:30 PM (freenet.node.Main, main, NORMAL): starting > node > Could not initialize network I/O system! Exiting > java.io.IOException: Unable to establish loopback connection > at sun.nio.ch.PipeImpl$Initializer.run(Unknown Source) > at java.security.AccessController.doPrivileged(Native Method) > at sun.nio.ch.PipeImpl.<init>(Unknown Source) > at sun.nio.ch.SelectorProviderImpl.openPipe(Unknown Source) > at java.nio.channels.Pipe.open(Unknown Source) > at sun.nio.ch.WindowsSelectorImpl.<init>(Unknown Source) > at sun.nio.ch.WindowsSelectorProvider.openSelector(Unknown Source) > at java.nio.channels.Selector.open(Unknown Source) > at > freenet.transport.AbstractSelectorLoop.<init>(AbstractSelectorLoop.java:153) > at > freenet.transport.ThrottledSelectorLoop.<init>(ThrottledSelectorLoop.java:76) > at > freenet.transport.ReadSelectorLoop.<init>(ReadSelectorLoop.java:107) > at > freenet.transport.tcpConnection.startSelectorLoops(tcpConnection.java:151) > at freenet.node.Main.startNode(Main.java:1570) > at freenet.node.Main.spawnNode(Main.java:1060) > at freenet.node.Main.main(Main.java:908) > Caused by: java.net.ConnectException: Connection refused: connect > at sun.nio.ch.Net.connect(Native Method) > at sun.nio.ch.SocketChannelImpl.connect(Unknown Source) > at java.nio.channels.SocketChannel.open(Unknown Source) > ... 15 more > > any suggestions? > ______________________________________________ Bob _______________________________________________ Support mailing list [email protected] http://news.gmane.org/gmane.network.freenet.support Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support Or mailto:[EMAIL PROTECTED]
