- Connect to SSH with root user and type following command.
sudo yum install java-1.7.0-openjdkÂ
- At the confirmation prompt, enter y then RETURN to continue with the installation.
- Now, you have successfully installed OpenJDK 7. To download and install latest versions of OpenJDK packages, refer OpenJDK.
Install Vanilla Minecraft Server
- Connect to SSH with root user.
- Type following command to create folder in which you want install Minecraft. Though you can create this folder anywhere in VPS file structure, it is recommended to create it under home directory.
mkdir minecraft
- Now, switch to minecraft directory.
cd minecraft
- Now, verify that we have installed Java properly in previous steps, run following command.
java -version
- Once it is verified that Java has been successfully installed in VPS, download the Minecraft JAR file. Check MineCraft's download page to get the latest version of Minecraft Server.
curl -O https://s3.amazonaws.com/MinecraftDownload/launcher/minecraft_server.jar
- Open the default Minecraft port 25565.
sudo iptables -A INPUT -p tcp -m tcp --dport 25565 -j ACCEPT sudo service iptables save sudo service iptables restart
- Install screen to run Minecraft Server when you are not connected to VPS.
sudo yum install screen
- Start the Minecraft Server.
screen java -Xmx1024M -Xms1024M -jar minecraft_server.jar nogui
Now, you can exit from SSH or use ctrl+a+d to exit the Screen. While you exit from the screen, Minecraft wont get closed. You can type screen -r to open screen session again.