Problem Repetetive crashes | Mindcrack v8 | java.io.IOException

NooBxGockeL

New Member
Jul 29, 2019
93
0
0
I have an autorestart script on crashes to help getting server up easily after a crash.
The crash doesnt really leave a crashlog, its just java exiting immediatly, thats where my restart script comes in, it automatically restarts the server after it.
But well, it gets annoying when the server goes down every 10 minutes.

added:
mystcraft-uni-1.4.6-0.9.5.00
chargepads-universal-2.3.0.58
buildcraft-Z-additional-buildcraft-objects-0.9.6.73
ModularPowersuits-0.2.0-42
updated:
Railcraft_1.4.7-6.15.1.0
industrialcraft-2_1.112.198-lf
minecraftforge-universal-1.4.7-6.6.0.518

Server Specs (copied from host):

Rootserver
CPU: AMD FX 4100 4x 3.6Ghz (When start parameter are complicate GC gets 3 Parallel Threads)
RAM: ab 8 GB DDR3 (6 GB dedicated to Mindcraft)
HDD: 60GB SSD SATA III
Traffic: Gameserver Fairflat (100MBit/s Uplink)

There are two versions, both dont really work.
1. "java -Xms512M -Xmx6G -jar mindcrack.jar"
2. "java -server -XX:UseSSE=4 -XX:+UseCMSCompactAtFullCollection -XX:parallelGCThreads=3 -XX:+UseConcMarkSweepGC -XX:+DisableExplicitGC -XX:+CMSIncrementalMode -XX:+CMSIncrementalPacing -XX:+UseCompressedOops -XX:+AggressiveOpts -Xmx6G -jar server.jar nogui"
(Approved by naller @TickThreading: here)

The crash, caught from the end of the log files:
Code:
2013-01-29 21:15:52 [INFO] [STDERR] java.io.IOException: Eingabe-/Ausgabefehler
2013-01-29 21:15:52 [INFO] [STDERR]    at java.io.FileInputStream.readBytes(Native Method)
2013-01-29 21:15:52 [INFO] [STDERR]    at java.io.FileInputStream.read(Unknown Source)
2013-01-29 21:15:52 [INFO] [STDERR]    at java.io.BufferedInputStream.read1(Unknown Source)
2013-01-29 21:15:52 [INFO] [STDERR]    at java.io.BufferedInputStream.read(Unknown Source)
2013-01-29 21:15:52 [INFO] [STDERR]    at sun.nio.cs.StreamDecoder.readBytes(Unknown Source)
2013-01-29 21:15:52 [INFO] [STDERR]    at sun.nio.cs.StreamDecoder.implRead(Unknown Source)
2013-01-29 21:15:52 [INFO] [STDERR]    at sun.nio.cs.StreamDecoder.read(Unknown Source)
2013-01-29 21:15:52 [INFO] [STDERR]    at java.io.InputStreamReader.read(Unknown Source)
2013-01-29 21:15:52 [INFO] [STDERR]    at java.io.BufferedReader.fill(Unknown Source)
2013-01-29 21:15:52 [INFO] [STDERR]    at java.io.BufferedReader.readLine(Unknown Source)
2013-01-29 21:15:52 [INFO] [STDERR]    at java.io.BufferedReader.readLine(Unknown Source)
2013-01-29 21:15:52 [INFO] [STDERR]    at hq.run(SourceFile:68)

For the full log go take a look here: http://pastebin.com/TA6wFmEs
And because its fun, another log: http://pastebin.com/5jm8wF6F

Things i tried so far and didnt worked:
  • ran memtester to check the RAM(everything fine)
  • removed all extra mods i added (no diffrence)
  • deleted the world and generated a completely new one (again, no diffrence
  • chmod 777 recursively to the whole minecraft server directory and just to the world folder (same)
  • adjusting start parameter (you guessed right, same here)
Please if u know anything i could try to fix that, answer here!
 

Nessiroj

New Member
Jul 29, 2019
855
0
1
Just did a quick glance (and not really awake yet),
Code:
Time: 29.01.13 20:55
Description: Ticking tile entity
 
java.lang.NullPointerException
        at com.google.common.collect.ImmutableSetMultimap$Builder.putAll(ImmutableSetMultimap.java:246)
        at net.minecraftforge.common.ForgeChunkManager.forceChunk(ForgeChunkManager.java:727)
        at railcraft.common.blocks.machine.alpha.TileAnchorWorld.forceChunkLoading(TileAnchorWorld.java:326)
        at railcraft.common.blocks.machine.alpha.TileAnchorWorld.requestTicket(TileAnchorWorld.java:283)
        at railcraft.common.blocks.machine.alpha.TileAnchorWorld.g(TileAnchorWorld.java:257)
        at yc.h(World.java:2153)

Looks like some worldanchers are causing problems. Is the map loadable in singleplayer?
 

NooBxGockeL

New Member
Jul 29, 2019
93
0
0
I dont know and i cant really try... the world is like 3 gigs big...
And the only thing i did is updated from v7 to v8 so there shouldnt be problem with world anchors
 

NooBxGockeL

New Member
Jul 29, 2019
93
0
0
Updated overview post to specify my problem a bit more in detail.
Also did some things for the looks.
And please concentrate on the Error in the spoiler in the Overview Post, the crash that Nessiroj quoted is allready fixed i think(due to new Railcraft version).
 

Kanadeara

New Member
Jul 29, 2019
14
0
0
"2013-02-01 21:08:02 [SEVERE] [ForgeModLoader] Detected leaking worlds in memory. There are 4 worlds that appear to be persisting. A mod is likely caching the world incorrectly
  1. 2013-02-01 21:08:02 [SEVERE] [ForgeModLoader] The world 2e7541b3 (world) has leaked.
  2. 2013-02-01 21:08:02 [SEVERE] [ForgeModLoader] The world 422c2b16 (world) has leaked."
Saw that in the 2nd log, near the end of it. Perhaps a Mystcraft issue? Did you have multiple worlds made via mystcraft? Right after that line looks like the server crashes, though i didn't see that error in your 1st pastebin link so i'm not exactly sure :/
 

NooBxGockeL

New Member
Jul 29, 2019
93
0
0
Yeah i have mystcraft with a lot of ages.
And btw, i dont know how i did that, but the server runs smothly now, didnt really change anything except going back to manual start instead of restart script.
It still print some errors(refering to MultiMap stuff here) to the console from time to time though.