-
Notifications
You must be signed in to change notification settings - Fork 121
Installation
Installing Glowstone is as easy as installing any other server software. If you drop it in your current server folder, it will automatically migrate most settings to Glowstone.
-
Install Java 7 or higher if you don't have it already from here. (verify Java is installed by running 'java -version' (without the quotes) in the Command Prompt.)
-
Download the latest build of Glowstone.
-
Move the JAR file to your Glowstone folder.
-
Rename the JAR file to glowstone.jar
-
Using a text editor like Notepad, create a new start script (start.bat) to launch the JAR:
@echo off java -Xmx1536M -XX:MaxPermSize=128M -jar glowstone.jar -o true PAUSE
-
Double click the start.bat file.
-
Install Java 7 or higher if you don't have it already (Ubuntu/apt-get, CentOS/yum, Arch/pacman). (verify Java is installed by running 'java -version' (without the quotes) in the Terminal.)
-
Download the latest build of Glowstone.
-
Move the JAR file to your Glowstone folder.
-
Rename the JAR file to glowstone.jar
-
Using a text editor like gedit, nano, vim, or emacs, create a new start script (start.sh) to launch the JAR:
#!/bin/sh BINDIR=$(dirname "$(readlink -fn "$0")") cd "$BINDIR" java -Xmx1536M -XX:MaxPermSize=128M -jar glowstone.jar -o true
-
Open terminal, go to your Glowstone folder and enter this command to give the script execute permissions:
chmod +x start.sh
-
Enter this command in the terminal to start the server:
./start.sh
Video Instructions: https://www.youtube.com/watch?v=eriTkJiYsYg
- Install Java 7 or higher if you don't have it already from here. (verify Java is installed by running 'java -version' (without the quotes) in the Terminal.)
IMPORTANT: Java 7 may not be automatically used in Terminal, follow these steps to check/fix this.
-
Download the latest build of Glowstone.
-
Move the JAR file to your Glowstone folder.
-
Rename the JAR file to glowstone.jar
-
Using a text editor like TextEdit, create a new start script (start.command) to launch the JAR:
#!/bin/bash cd "$( dirname "$0" )" java -Xmx1536M -XX:MaxPermSize=128M -jar glowstone.jar -o true
-
Open terminal and type (not enter) this command to give the script execute permissions:
chmod a+x
-
Drag start.command into the Terminal window. Confirm there is a space between chmod a+x and the start.command path.
-
Double click the start.command file to start the server.
If you can't access your server from your IP, make sure you have port forwarded or used a UPnP port mapper to allow incoming connections to your server.
For server issues, create an issue on Github.
If you have any trouble setting up, we would be happy to help you on the forums.
By default, all configuration files are in the config folder of your Glowstone directory.
Most Bukkit plugins will work on Glowstone. Only plugins that use CraftBukkit or Minecraft code will not work, unless they are designed to fail gracefully. Read more.