Solved Server Crashing after initializing NEI...

  • 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

Vincent F

New Member
Jul 29, 2019
6
0
0
Hello everyone, as the title says my server is having issues with loading up NEI. It says out of memory but it has over 6 GB! I'm really at a loss here...
Crash report is attached in a file because it is over 3,000 words.
Thanks in advance, Vincent F
 

Attachments

  • crash-2013-11-05_17.07.04-server.txt
    33.9 KB · Views: 71

Francis Baster

New Member
Jul 29, 2019
295
0
0
Caused by: java.lang.OutOfMemoryError: PermGen space

This is the underlying problem. You have allocated 6 GB of heap space but the PermGen space is still at the default 64MB, and you are running out. To increase your perm gen space, add the following argument to your server start script. If you continue to have trouble, increase to 256M.

Code:
-XX:PermSize=128M
 

Vincent F

New Member
Jul 29, 2019
6
0
0
Caused by: java.lang.OutOfMemoryError: PermGen space

This is the underlying problem. You have allocated 6 GB of heap space but the PermGen space is still at the default 64MB, and you are running out. To increase your perm gen space, add the following argument to your server start script. If you continue to have trouble, increase to 256M.

Code:
-XX:PermSize=128M

Thank You very much! After looking into the permgen argument I decided that I would just use 512M mainly because I'm using a heavily modded flavor of Unleashed that is sitting around 192 mods right now.
Thank you once again, Vincent F