Deploying a Minecraft gaming server : KB.IWEB.COM

Report 0 Downloads 151 Views
Deploying a Minecraft gaming server : KB.IWEB.COM

2016-02-02, 2:29 PM

Knowledge Base / General / Migration & Deployment

Deploying a Minecraft gaming server Admin posted this on October 17, 2014, 14:00

Share

Tweet

Like

0

Français Espanol Expertise level: Easy Deploying a Minecraft server is easy to do on iWeb servers; Dedicated or Cloud. Doing so will allow you to create your own Minecraft world and enjoy playing with your friends, family members and gaming community. Use the following instructions (to be used with Ubuntu 14.04 LTS): 1. Start by installing java using the below command prompt:

sudo add-apt-repository ppa:webupd8team/java 2. Press enter sudo apt-get update sudo apt-get install oracle-java7-installer

3. Review and accept the license.

https://kb.iweb.com/entries/103030526-Deploying-a-Minecraft-gaming-server

Page 1 of 3

Deploying a Minecraft gaming server : KB.IWEB.COM

2016-02-02, 2:29 PM

Reference: http://www.webupd8.org/2012/01/install-oracle-java-jdk-7-in-ubuntu-via.html ---------------1. Install the Minecraft server: mkdir minecraft cd minecraft wget https://s3.amazonaws.com/Minecraft.Download/versions/1.8/minecraft_server.1.8.jar O minecraft_server.jar vi start.sh #!/bin/bash -x java -server -Xmx1G -XX:+UseConcMarkSweepGC -XX:+UseParNewGC XX:+CMSIncrementalPacing -XX:ParallelGCThreads=2 -XX:+AggressiveOpts -jar minecraft_server.jar nogui chmod +x start.sh 2. Finalize the server setup: ./start.sh

stop server with : stop vi eula.txt eula=true

restart minecraft server ./start.sh 3. As the server creates the missing files, there will be an error message.

https://kb.iweb.com/entries/103030526-Deploying-a-Minecraft-gaming-server

Page 2 of 3

Deploying a Minecraft gaming server : KB.IWEB.COM

2016-02-02, 2:29 PM

Reference: http://minecraft.gamepedia.com/Tutorials/Setting_up_a_server

0 people found this useful. - Be the first!

https://kb.iweb.com/entries/103030526-Deploying-a-Minecraft-gaming-server

Page 3 of 3