Stalls/Crashes at Mojang Splash

  • 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

Gregolo

New Member
Jul 29, 2019
14
0
0
Hey guys, I have about 7 people running on my server and one of them just can't seem to get the Direwolf20 pack up, running, and joining my server.

Everyone else seems to be fine so it's clearly on his side. Here's his crash log I had him send me.

http://pastebin.com/4cZ9bP6a

Can any of you guys discern the problem?

I have him running the latest java, he's designated 3Gb of RAM to Java. He's running a 64 bit OS, We've tried reinstalling the pack, forcing update, trying a previous version of java.

Kind of lost for ideas.

Any help would be very appreciated.
 

JamiePhonic

New Member
Jul 29, 2019
404
0
0
heres the problem (on line 125 of your first log):
Code:
JVM Flags: 5 total; -Xms256M -Xmx3072M -XX:PermSize=256m -Xmx2048 -Xmx512M
the launcher is trying to start the game with a reserved memory space of 256 MB (-Xms256M) and a maximum of 3GB (-Xmx3072M) like you said, which is usually all it does by default. you friend has specified
"-XX:PermSize=256m -Xmx2048 -Xmx512M"
as extra parameters in the "additional Java parameters" section of the advanced settings and so the second max memory space parameter (-Xmx2048M) is overriding the first one, then the third max memory space parameter (-Xmx512M) is overriding the second one. hence why changing the MAX RAM in the launcher is making no difference and your game is still running out of RAM.

fix it by going to the settings tab of the launcher, click "advanced options" and then just clear the "additional Java parameters" box and ONLY use the recommended parameters found here Pasted below AFTER you get it to launch with the box cleared
Code:
-Xms1024m -XX:PermSize=256m -XX:NewRatio=3 -XX:SurvivorRatio=3 -XX:TargetSurvivorRatio=80 -XX:MaxTenuringThreshold=8 -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:MaxGCPauseMillis=10 -XX:GCPauseIntervalMillis=50 -XX:MaxGCMinorPauseMillis=7 -XX:+ExplicitGCInvokesConcurrent -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=60 -XX:+BindGCTaskThreadsToCPUs -Xnoclassgc
 

Gregolo

New Member
Jul 29, 2019
14
0
0
Very much appreciated Jamie, I'll let him know tomorrow and we'll see if that fixes it.

<3