Jump to content

Recommended Posts

Posted

Hi! I'm trying to make a server for my modpack and I want to make it run as efficiently and smoothly as possible. So, I wanted to use these parameters for it:

java -native -server -Xincgc -Xmx6144M -Xms2048M -Xmn512M -XX:NewRatio=3 -Xrs -XX:+UseThreadPriorities -XX:CMSFullGCsBeforeCompaction=1 -XX:SoftRefLRUPolicyMSPerMB=2048 -XX:+CMSParallelRemarkEnabled -XX:+UseParNewGC -XX:+UseAdaptiveSizePolicy -XX:+DisableExplicitGC -Xnoclassgc -oss4M -ss4M -XX:+UseFastAccessorMethods -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=75 -XX:+UseConcMarkSweepGC -XX:UseSSE=4 -XX:+UseCMSCompactAtFullCollection -XX:ParallelGCThreads=4 -Xcheck:jni -Xfuture -XX:+AggressiveOpts -cp "minecraftforge-universal-1.6.4-9.11.1.965-v164-pregradle.jar" -jar "minecraftforge-universal-1.6.4-9.11.1.965-v164-pregradle.jar" nogui
pause

I ran the server with these and it worked fine, but it crashes at the end right before it generates the map. It states this:

---- Minecraft Crash Report ----
// I bet Cylons wouldn't have this problem.
 
Time: 6/12/14 2:13 PM
Description: Exception in server tick loop
 
java.lang.NoClassDefFoundError: org/lwjgl/LWJGLException
at net.minecraft.server.management.PlayerManager.<init>(PlayerManager.java:55)
at net.minecraft.world.WorldServer.<init>(WorldServer.java:113)
at net.minecraft.server.MinecraftServer.func_71247_a(MinecraftServer.java:246)
at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:187)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:445)
at net.minecraft.server.ThreadMinecraftServer.run(SourceFile:583)
Caused by: java.lang.ClassNotFoundException: org.lwjgl.LWJGLException
at java.net.URLClassLoader$1.run(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:102)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
... 6 more

Anybody know why and how I can fix this? Thanks for reading.

  • Discord Moderator
Posted

You cut off the part of the crash report that would have let us help you. That error message means that you have not removed one or more client-only mods. It is impossible to tell which without the full crash report or a link to your pack.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...