Jump to content

Recommended Posts

Posted

I have made a 1.12.2 server with the following mods:

Baubles
Backpack
Damage Indicators
Voxelmap
Battle towers
Portal gun
Ender Storage
Mo Creatures
Iron chest
Buildcraft
Buildcraft compat
Treecap
Thaumicenergistics
Morph
Libraries
Ichunutil
Biomes O Plenty
Bibliocraft
Tinkers Construct
Mantle
Optifine
Ic2
Extreme Reactors
Ae2
Ae2 stuff
Bdlib
Galacticraft Core
Galacticraft Planets
Micdoodle Core
Twilight Forest
Better FPS
Pam's Harvest Craft
AppleCore
Spice Of Life
Thermal Dynamics
Thermal Expansion
Thermal Foundation
Chicken Chunks
CoFHCore
CoFH World
Code Chicken Lib
Vanilla fix
Hwyla
Biomes you'll go
Zero Core
Thaumcraft
Thaumic JEI
JEI
Just Enough Resources
Just Enough Energisticd
Just Enough Harvest Craft
Tinkers JEI
Just Enough Reactors
Familiar fauna
Aether
Gravestone
Iron tanks
Deconstruction Table

 

As the forge server jar file starts up it runs for a few seconds and then proceeds to crash

Here is the crash report and log files generated after the crash,

Crash Report: https://pastebin.com/TGp6PHsg

"latest" file from log folder: https://pastebin.com/Ah1JidVN

"debug" file from log folder: https://pastebin.com/GSxGFjmr

 

 

Posted
  On 6/26/2019 at 7:52 AM, Ruchia said:

The official source for VoxelMap (and exact version) is https://minecraft.curseforge.com/projects/voxelmap/files/2727117
(just posting this in between)
The other error indicates your forge version is too low.

Edit: to be exact. It says: requires forge 14.23.5.2781,
And you're using forge 14.23.5.2768
Diesieben suggests updating with that message.

Expand  

so i used that exact forge build and get the following reports

 

crash-2019-06-26_14.13.19-server.txtFetching info... debug.logFetching info... latest.logFetching info...

Posted
  On 6/26/2019 at 8:24 AM, diesieben07 said:

Remove VoxelMap, it's apparently broken. Also report this to the author.

Expand  
java -Xmx8096M -Xms8096M -jar forge-1.12.2-14.23.5.2781-universal.jar nogui
PAUSE

So i started running the forge file through a run.bat file using the text above and it proceeds to crash. I removed voxelmap from the mods and the console seems to freeze.

 

crash-2019-06-26_19.50.02-server.txtFetching info... debug.logFetching info... latest.logFetching info...

Posted (edited)
  On 6/26/2019 at 1:57 PM, Zewy2660 said:
java -Xmx8096M -Xms8096M -jar forge-1.12.2-14.23.5.2781-universal.jar nogui
PAUSE

So i started running the forge file through a run.bat file using the text above and it proceeds to crash. I removed voxelmap from the mods and the console seems to freeze.

 

crash-2019-06-26_19.50.02-server.txt 21.2 kB · 0 downloads debug.log 849.34 kB · 0 downloads latest.log 89.57 kB · 0 downloads

Expand  

So i found at that the problem was with the damage indicator mod so i removed it but now the server console seems to stop on its own after running a few a commands.There is also no new crash reports being generated

latest(1).logFetching info...

Edited by Zewy2660
Forgot some information
Posted

That happens when you close the server manually, not a command.
There is no indication in your latest log of you ordering it to stop running.
When you use nogui as you did, the server is run only in your terminal (cmd), If you close the terminal (cmd), the server will also stop running. (Actually, since you use a batch to launch the server, you will always get a terminal window that processes the server, so keeping this open is a must to keep the server running.)

If you didn't close the server yourself, make sure you have that much RAM available for anything. Maybe you OS closed the application as a security measure due to lack of available RAM.
For the little amount of mods you run, your server doesn't need 8G. The client generally needs more RAM than the server and I can run All The Mods 3 Remix on the client with 6.5G, which has 330 mods. I suggest lowering your RAM allocation, on both your server and client. (especially xms, since that is the minimum you make available.)

If you have 16GB RAM installled, you need to keep in mind that Windows needs 4GB RAM. Your browser also needs RAM. If you set both client and server to use at least 8GB RAM, your Windows will close those. (there is a way to work around this, with virtual RAM, but that isn't a very healthy way to use your hard drives.)

example for client:

-Xmx6144M -Xms2048M

example for server:

java -Xmx4096M -Xms1024M -jar forge-1.12.2-14.23.5.2781-universal.jar nogui

(You can adjust the RAM based on the number you actually need. In case it lags too much, you can bring xms closer to xmx. This lowers the time needed for garbage collection and therefore reduces latency (due to processing) issues.)

In these examples I assigned 4GB to your server (at max) and 6GB (at max) to your client, but with that little mods, you likely require less RAM.

About Toro's Damage Indicators. It's known to cause problems. The mod hasn't been updated (for the public) since 2017. It is a client sided mod, but even when people know this it sometimes causes issues anyway.

Posted
  On 6/26/2019 at 4:40 PM, Ruchia said:

That happens when you close the server manually, not a command.
There is no indication in your latest log of you ordering it to stop running.
When you use nogui as you did, the server is run only in your terminal (cmd), If you close the terminal (cmd), the server will also stop running. (Actually, since you use a batch to launch the server, you will always get a terminal window that processes the server, so keeping this open is a must to keep the server running.)

If you didn't close the server yourself, make sure you have that much RAM available for anything. Maybe you OS closed the application as a security measure due to lack of available RAM.
For the little amount of mods you run, your server doesn't need 8G. The client generally needs more RAM than the server and I can run All The Mods 3 Remix on the client with 6.5G, which has 330 mods. I suggest lowering your RAM allocation, on both your server and client. (especially xms, since that is the minimum you make available.)

If you have 16GB RAM installled, you need to keep in mind that Windows needs 4GB RAM. Your browser also needs RAM. If you set both client and server to use at least 8GB RAM, your Windows will close those. (there is a way to work around this, with virtual RAM, but that isn't a very healthy way to use your hard drives.)

example for client:

-Xmx6144M -Xms2048M

example for server:

java -Xmx4096M -Xms1024M -jar forge-1.12.2-14.23.5.2781-universal.jar nogui

(You can adjust the RAM based on the number you actually need. In case it lags too much, you can bring xms closer to xmx. This lowers the time needed for garbage collection and therefore reduces latency (due to processing) issues.)

In these examples I assigned 4GB to your server (at max) and 6GB (at max) to your client, but with that little mods, you likely require less RAM.

About Toro's Damage Indicators. It's known to cause problems. The mod hasn't been updated (for the public) since 2017. It is a client sided mod, but even when people know this it sometimes causes issues anyway.

Expand  

SO we decreased the ram of the .bat file  but it seems to stop at [Thread-18/INFO] [THAUMCRAFT]: Stopping aura thread for dim 7 and doesnt load anything

Posted
  On 6/26/2019 at 5:13 PM, Zewy2660 said:

SO we decreased the ram of the .bat file  but it seems to stop at [Thread-18/INFO] [THAUMCRAFT]: Stopping aura thread for dim 7 and doesnt load anything

Expand  

If it is not closing the server, it's probably normal. Try and see if you can execute commands, if you want to be certain. example: say test
If there is no one running in the server, it usually unloads dims. The same goes for when people are not present in a certain dim, it usually unloads that dim. It will load the dim up again when someone enters, so no need to worry about that.

Posted
  On 6/26/2019 at 5:18 PM, Ruchia said:

If it is not closing the server, it's probably normal. Try and see if you can execute commands, if you want to be certain. example: say test
If there is no one running in the server, it usually unloads dims. The same goes for when people are not present in a certain dim, it usually unloads that dim. It will load the dim up again when someone enters, so no need to worry about that.

Expand  

Thanksss it worked

 

  • 3 months later...
Posted

Sorry to drudge up an old thread, but was looking for a fix for server crash related to installing Voxelmap on bisect server with forge modpack installed. I added Voxelmap and Effortless Building to my 1.12.2 client and server, but upon restarting the server it would crash and abort restart attempts. Removed Voxelmap from server, but not client, and everything is running smoothly. Seems like it's running with full function without the need to install in bisect at all.

Posted

Please do not necro old threads, if you have an issue make your own and provide logs.

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

  Reveal hidden contents

 

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • "I want to understand how complex mods with ASM transformation and coremods work, such as Xray or AntiXray. Why do they break when you simply rename packages? What features of their architecture make refactoring difficult? And what techniques are used to protect these mods? I am interested in technical aspects in order to better understand the bytecode and Forge loader system."
    • I can't figure out if you're looking for help trying to steal someone elses work, or cheat at the game....
    • Title: Why Is It So Hard to Rename and Restructure Mods Like Xray or AntiXray? 🤔 Post text: Hey everyone! I’ve been digging into Minecraft modding for a while and have one big question that I can’t figure out on my own. Maybe someone with more experience could help or give me some advice. Here’s the issue: When I take a “normal” Minecraft mod — for example, one that just adds some blocks or new items — I can easily change its structure, package names, or even rebrand it entirely. It’s straightforward. But as soon as I try this with cheat-type mods like XrayMod or AntiXray, everything falls apart. Even if I just rename the classes, refactor the packages, or hide its identity somehow, the mod either breaks or stops working properly. XrayMod in particular is proving to be a nightmare to modify without losing its core function. So my question is — why is this so much harder with cheat mods like Xray? Is there something fundamentally different about how they’re coded, loaded, or protected that prevents simple renaming or restructuring? And if so, how can I actually learn to understand someone else’s cheat mod enough to safely refactor it without breaking the core features? I’ve already been spending over two months trying to figure this out and haven’t gotten anywhere. It feels like there must be some trick or knowledge I’m missing. Would really appreciate any thoughts, tips, or references — maybe there are guides or techniques for understanding cheat-mod internals? Or if you’ve successfully “disguised” a cheat mod like Xray before, I’d love to hear how you did it. Thanks in advance for any help or discussion. ✌️
    • just started making cinamatic contect check it out on my channel or check out my facebook page    Humbug City Minecraft Youtube https://www.youtube.com/watch?v=v2N6OveKwno https://www.facebook.com/profile.php?id=61575866982337  
    • Where did you get the schematic? Source/Link? And do use an own modpack or a pre-configured from curseforge? If yes, which one On a later time, I can make some tests on my own - but I need the schematic and the modpack name
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.