Solved Server Crashing on startup all of a sudden.

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Deimos

New Member
Jul 29, 2019
90
0
0
So my server crashed today and my restart script couldn't restart it so I looked at the crash log and this is what is showing.
I can't really find anything relating to it.
Crash log

Any ideas?
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
Lets break it down, so maybe the next time a crash happens you know what to look for
java.lang.RuntimeException: java.io.EOFException
means that a file ended while more was expected, thus it probably became corrupted

at codechicken.wirelessredstone.core.SaveManager.loadNodes(SaveManager.java:505)
Reveals the mod that causes the problem, in this case wireless redstone

Sadly it doesn't tell what file got corrupted, however in your world folder is a folder called RedstoneEther or something among those lines. Make a backup of the folder and delete it. (or wait for someone else to reply that may have a better answer)
 
  • Like
Reactions: Deimos

Deimos

New Member
Jul 29, 2019
90
0
0
Lets break it down, so maybe the next time a crash happens you know what to look for
java.lang.RuntimeException: java.io.EOFException
means that a file ended while more was expected, thus it probably became corrupted

at codechicken.wirelessredstone.core.SaveManager.loadNodes(SaveManager.java:505)
Reveals the mod that causes the problem, in this case wireless redstone

Sadly it doesn't tell what file got corrupted, however in your world folder is a folder called RedstoneEther or something among those lines. Make a backup of the folder and delete it. (or wait for someone else to reply that may have a better answer)
Thanks man, that fixed it.

its hard to know what you are looking for in an error code like that when you dont really know how to read them :p
I knew it was something along those lines, but not how to fix it :)

Thanks again buddy.