How can I open - java minecraft_server jar nogui?

443    Asked by PiersWright in Java , Asked on Oct 13, 2022

 When I downloaded minecraft_server1.8.8.jar I couldn't open it by double clicking on it, nothing would happen.

I tried opening the eula.txt file and changed eula=false to eula=true so I'm still confused as to why it doesn't work.

What do I need to do to open the minecraft_server.jar file?



Answered by Pippa Kelly

For java minecraft_server jar nogui

jar files need to be open with Java;

Windows

Go to the folder where the .jar file is located. Then push alt+D type in cmd and hit Enter. This will open cmd.exe with the location set to the correct spot, otherwise you could change directory with the cd (directory) command.

Now just type in java -jar minecraft_server1.8.8.jar and hit Enter to open the file.

Linux

Open the Terminal: Applications > Accessories > Terminal. and then change directories to where the Minecraft server jar is located with the cd command. Then type in java -jar minecraft_server.jar

Additional arguments:

You can add no gui to the end of the command to open the server without the GUI

You can specify the initial and maximum memory allocation pool for the Java Virtual Machine by adding -Xms500M and -Xmx1G between java and -jar. You can change the size (the 500M and 1G parts) to whatever you like. The default value for xmx is 256MB, if you encounter a java.lang.OutOfMemoryError you may need to increase xmx when you start it with this command line.



Your Answer

Interviews

Parent Categories