All of Fabric 6 - AOF6

All of Fabric 6 - AOF6

589k Downloads

Error in server console

Lucas-S-Vieira opened this issue ยท 12 comments

commented

I've created a server with my friends and im hosting in my machine, im using the version of the modpack (1.8.2).
in my console has this message, all the time:
[09:06:21] [Netty Server IO #4/ERROR]: Twilight Forest: Exception occurred in netty pipeline
io.netty.handler.timeout.ReadTimeoutException: null

My server doesnt close, but this message keep appearing

Edit: heres a print of the console
image

commented

Im running the server right now, but unitl the server open, is there any chance, that maybe this error is being caused because of my java JDK version?
Im using the official java jdk 17

commented

The server is running right now, here is the log:
https://mclo.gs/nmgrFe4

commented

try setting debugPrintMessages to true in connectivity's config file, this should flood the log a bit more. once it gives one of those timeout exceptions, post the log to mclo.gs again and post the link here. that may give more info as to whats going on.

commented

I would take a look at anything that might interfere. If you are using a vpn, test without it.. if you are using something like hamachi, disable it and test again, etc.

commented

Im running the server right now, but unitl the server open, is there any chance, that maybe this error is being caused because of my java JDK version? Im using the official java jdk 17

No. Java 17 is supported. The error you are seeing is a timeout when attempting to communicate over the network.

this appears like it may be caused by no-chat-reports

commented

Im running the server right now, but unitl the server open, is there any chance, that maybe this error is being caused because of my java JDK version? Im using the official java jdk 17

No. Java 17 is supported. The error you are seeing is a timeout when attempting to communicate over the network.

this appears like it may be caused by no-chat-reports

What I can do to stop this error? just ignore it? or remove no-chat-reports?

commented

i've saved the world and re-installed the rest of the modpack, and now its getting this log
https://mclo.gs/oXtyl5D

commented

you seem to have something interfering with your network. Is this your local computer or a hosted server somewhere?

commented

you seem to have something interfering with your network. Is this your local computer or a hosted server somewhere?

Local computer

commented

you seem to have something interfering with your network. Is this your local computer or a hosted server somewhere?

but i didnt get it, why is a network problem?

commented

io.netty.handler.codec.DecoderException: java.io.IOException: Packet -1/0 (class_2889) was larger than I expected, found 48 bytes extra whilst reading packet 0

This says basically that the packet is malformed. packets are how things send data over the network

io.netty.handler.codec.CorruptedFrameException: length wider than 21-bit

more packet corruption issues

Caused by: java.lang.IndexOutOfBoundsException: Index 50 out of bounds for length 1

this one too

io.netty.handler.timeout.ReadTimeoutException: null

this one isnt packet corruption but the game expecting to receive more data and it just not coming in, which also indicates a network problem

commented

io.netty.handler.codec.DecoderException: java.io.IOException: Packet -1/0 (class_2889) was larger than I expected, found 48 bytes extra whilst reading packet 0

This says basically that the packet is malformed. packets are how things send data over the network

io.netty.handler.codec.CorruptedFrameException: length wider than 21-bit

more packet corruption issues

Caused by: java.lang.IndexOutOfBoundsException: Index 50 out of bounds for length 1

this one too

io.netty.handler.timeout.ReadTimeoutException: null

this one isnt packet corruption but the game expecting to receive more data and it just not coming in, which also indicates a network problem

Have any hint of how can i solve this?