Open 1.2.0: Server not starting

  • This section is closed. Please do bug reports over at the FTB GitHub repos.
  • 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

techguy948

New Member
Jul 29, 2019
1
0
0
Version:
1.2.1

Everytime I run the serverstart.bat since the latest update, it loads up everything and then says
Server process finished
Press any key to continue...

(the server doesn't run and can not be accessed through localhost anymore)

Infinity server worked perfectly fine before this update.

(i have java 7 update 71 on windows 7)

I seem to be the only one with this problem

Thanks, tech

Mod & Version:


Paste.feed-the-beast.com log:
 
Last edited:

PostMorto

New Member
Jul 29, 2019
4
0
0
Having the same on my VPS system.

Java 8 Update 40. Windows Server 2008.

Tried with eula=true as well as all the garbage removed from the bat file.
 

PostMorto

New Member
Jul 29, 2019
4
0
0
@techguy948 - got mine to work oddly enough by deleting everything but my world and the server.properties file then downloading 1.2.0 and running. Then deleting everything again but my server.properties and world and installing 1.2.1.

In your bat file you will want to add -Dfml.queryResult=confirm or cancel between the .jar file and the nogui command.

I.E:
From:
Code:
java -server -Xms512m -Xmx2048M -XX:permSize=256m -d64 -XX:+UseParNewGC -XX:+CMSIncrementalPacing -XX:+CMSClassUnloadingEnabled -XX:parallelGCThreads=2 -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=10 -jar FTBServer-1.7.10-1291.jar nogui
To:
Code:
java -server -Xms512m -Xmx2048M -XX:permSize=256m -d64 -XX:+UseParNewGC -XX:+CMSIncrementalPacing -XX:+CMSClassUnloadingEnabled -XX:parallelGCThreads=2 -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=10 -jar FTBServer-1.7.10-1291.jar -Dfml.queryResult=cancel nogui

To avoid having to specify that option on launch in command line. I believe all this does is specify if you want a form of world backup enabled. Why this isn't set by default in the bat file is beyond me.

Hopefully this works for you.