SlideShare a Scribd company logo
1 of 15
Your Own Minecraft Server
on a Linode VPS
Running Minecraft Server on a Linode Debian Instance If
you are having issues following the official minecraft wiki
then you are not alone - I found it much too generic and
could not get the 'init.d' startup script to work. Following
is a step by step guide to quickly set up your on game
server running on Debian/Ubuntu distribution.
Install Java We are going to install OpenJDK which for all
intents and purposes is equivalent to Sun java but
without licensing issues. Execute below commands
under root or using sudo.
# aptitude update
# aptitude install openjdk-6-jre-headless
Download and Install Minecraft Server We are going to
download and install into '/usr/local/minecraft' as per the
Debian FilesystemHierarchyStandard.
# mkdir /usr/local/minecraft
๏ฌ
# cd /usr/local/minecraft/
๏ฌ
# wget ht tp://dl.bukkit.org/latest-rb/craftbukkit.jar
We are installing the bukkit minecraft version rather then the
vanilla one, it is fully comptabible with the vanilla server but
lets your run plugins to effectivley manage your server
Server Settings Create the minecraft servers .properties file. I
suggest you at least modify the 'motd', and 'level-seed' so that
your world is a little personal to you.
# cd /usr/local/minecraft/
# nano server.properties
#Danols Minecraft Server properties
allow-nether=true
level-name=world
enable-query=false
allow-flight=false
server-port=25565
level-type=DEFAULT
enable-rcon=false
level-seed=Artomix #ht
tp://seedhunter.blogspot.com/2012/03/jungle-
island.html
server-ip=
max-build-height=256
spawn-npcs=true
white-list=false
spawn-animals=true
online-mode=true
pvp=true
difficulty=3
Gamemode=0
max-players=6
spawn-monsters=true
generate-structures=true
view-distance=10
motd=you must survive
Automatic Startup Compared that what is posted on the Minecraft
Wiki the below is a simple startup script using
Debians/Ubuntus start-stop-deamon utility, it does not have
the update server, or run file system in memory option; in my
opinion Java+Linux do a good job system caching on demand
and any speeds from running in memory
The server is run under user 'minecraft-server' and group
'daemon' to increase security - this account and group is
created as follows:
# useradd --home-dir /usr/local/minecraft-server --no-create-
home -g daemon --shell /bin/false minecraft-server
# groupadd daemon
Create the startup script as follows
# cd /etc/init.d/
# touch minecraft-server
# chmod +x minecraft-server
Paste the following code into the script and make sure to
modify the DAEMON_ARGS setting to reflect your
memory allocation.
#!/bin/bash
### BEGIN INIT INFO
# Provides: minecraft_server
# Required-Start: $local_fs $remote_fs $network
# Required-Stop: $local_fs $remote_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Description: Minecraft server debian init script.
# You can use this as a template or symbolic link it into
`/etc/init.d` on Debian system
# PATH should only include /usr/* if it runs after the
mountnfs.sh script
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
DESC="Minecraft Server"
NAME=minecraft_server.jar
SCREENNAME=minecraft-server # the session screen game given
DAEMON="/usr/bin/screen"
DAEMONUSER=minecraft-server
DAEMONGROUP=daemon
# the -Xincgc options enable incremental garbage collector which
slows
# execution but makes more memory efficient.
DAEMON_ARGS="-DmS $SCREENNAME java -Xincgc -Xms32M
-Xmx304M -jar /usr/local/minecraft-server/$NAME nogui"
# Lowest memory limit used was about 80M on fresh start.
# For screen we use `-DmS` instead of -dmS since -D
doesn't detach the screen so our pid
# file created by start-stop-deamon is correct.
PIDFILE=/usr/local/minecraft-server/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME
# Exit if the package is not installed
#[ -f "$DAEMON" ] || exit 0
# Read configuration variable file if it is present
[ -r /etc/default/$NAME ] &&. /etc/default/$NAME
# Load the VERBOSE setting and other rcS variables
. /lib/init/vars.sh
# Define LSB log_* functions.
# Depend on lsb-base (>= 3.0-6) to ensure that this file is
present.
. /lib/lsb/init-functions
# Function that starts the daemon/service
# do_start()
Activate the startup script and start the server by
executing the following commands:
# update-rc.d minecraft-server defaults
# /etc/init.d/minecraft-server start

More Related Content

What's hot

Installing OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
Installing OpenSim (Diva Distro) to Create Your Own Private Sim SandboxInstalling OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
Installing OpenSim (Diva Distro) to Create Your Own Private Sim SandboxFleep Tuque
ย 
Aeon mike guide transparent ssl filtering
Aeon mike guide transparent ssl filteringAeon mike guide transparent ssl filtering
Aeon mike guide transparent ssl filteringConrad Cruz
ย 
Aeon mike guide transparent ssl filtering (1)
Aeon mike guide transparent ssl filtering (1)Aeon mike guide transparent ssl filtering (1)
Aeon mike guide transparent ssl filtering (1)Conrad Cruz
ย 
Less passwords, more security: unix socket authentication and other MariaDB h...
Less passwords, more security: unix socket authentication and other MariaDB h...Less passwords, more security: unix socket authentication and other MariaDB h...
Less passwords, more security: unix socket authentication and other MariaDB h...Otto Kekรคlรคinen
ย 
Installing Drupal 7 in Debian Environment
Installing Drupal 7 in Debian EnvironmentInstalling Drupal 7 in Debian Environment
Installing Drupal 7 in Debian EnvironmentEleison Cruz
ย 
Vagrant - Version control your dev environment
Vagrant - Version control your dev environmentVagrant - Version control your dev environment
Vagrant - Version control your dev environmentbocribbz
ย 
DebConf16 BoF on MariaDB/MySQL packaging
DebConf16 BoF on MariaDB/MySQL packagingDebConf16 BoF on MariaDB/MySQL packaging
DebConf16 BoF on MariaDB/MySQL packagingOtto Kekรคlรคinen
ย 
How To Deploy A Cloud Based Webserver in 5 minutes - LAMP
How To Deploy A Cloud Based Webserver in 5 minutes - LAMPHow To Deploy A Cloud Based Webserver in 5 minutes - LAMP
How To Deploy A Cloud Based Webserver in 5 minutes - LAMPMatt Dunlap
ย 
Cassandra installation
Cassandra installationCassandra installation
Cassandra installationPritamKathar
ย 
Minicurso de Vagrant
Minicurso de VagrantMinicurso de Vagrant
Minicurso de VagrantLeandro Nunes
ย 
Installing and running Postfix within a docker container from the command line
Installing and running Postfix within a docker container from the command lineInstalling and running Postfix within a docker container from the command line
Installing and running Postfix within a docker container from the command linedotCloud
ย 
Dockerizing WordPress
Dockerizing WordPressDockerizing WordPress
Dockerizing WordPressdotCloud
ย 
Compcon 2016 Workshop
Compcon 2016 WorkshopCompcon 2016 Workshop
Compcon 2016 WorkshopSteven Cooper
ย 
How to manage Microsoft Azure with open source
How to manage Microsoft Azure with open sourceHow to manage Microsoft Azure with open source
How to manage Microsoft Azure with open sourceTaehee Jang
ย 
OpenNebulaConf2015 2.02 Backing up your VMโ€™s with Bacula - Alberto Garcรญa
OpenNebulaConf2015 2.02 Backing up your VMโ€™s with Bacula - Alberto GarcรญaOpenNebulaConf2015 2.02 Backing up your VMโ€™s with Bacula - Alberto Garcรญa
OpenNebulaConf2015 2.02 Backing up your VMโ€™s with Bacula - Alberto GarcรญaOpenNebula Project
ย 
Docker in Action
Docker in ActionDocker in Action
Docker in ActionAlper Kanat
ย 
How to install ReactJS software
How to install ReactJS software How to install ReactJS software
How to install ReactJS software VigneshVijay21
ย 
Installing hive on ubuntu 16
Installing hive on ubuntu 16Installing hive on ubuntu 16
Installing hive on ubuntu 16Enrique Davila
ย 

What's hot (19)

Installing OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
Installing OpenSim (Diva Distro) to Create Your Own Private Sim SandboxInstalling OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
Installing OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
ย 
Aeon mike guide transparent ssl filtering
Aeon mike guide transparent ssl filteringAeon mike guide transparent ssl filtering
Aeon mike guide transparent ssl filtering
ย 
Aeon mike guide transparent ssl filtering (1)
Aeon mike guide transparent ssl filtering (1)Aeon mike guide transparent ssl filtering (1)
Aeon mike guide transparent ssl filtering (1)
ย 
Less passwords, more security: unix socket authentication and other MariaDB h...
Less passwords, more security: unix socket authentication and other MariaDB h...Less passwords, more security: unix socket authentication and other MariaDB h...
Less passwords, more security: unix socket authentication and other MariaDB h...
ย 
Installing Drupal 7 in Debian Environment
Installing Drupal 7 in Debian EnvironmentInstalling Drupal 7 in Debian Environment
Installing Drupal 7 in Debian Environment
ย 
Vagrant - Version control your dev environment
Vagrant - Version control your dev environmentVagrant - Version control your dev environment
Vagrant - Version control your dev environment
ย 
DebConf16 BoF on MariaDB/MySQL packaging
DebConf16 BoF on MariaDB/MySQL packagingDebConf16 BoF on MariaDB/MySQL packaging
DebConf16 BoF on MariaDB/MySQL packaging
ย 
How To Deploy A Cloud Based Webserver in 5 minutes - LAMP
How To Deploy A Cloud Based Webserver in 5 minutes - LAMPHow To Deploy A Cloud Based Webserver in 5 minutes - LAMP
How To Deploy A Cloud Based Webserver in 5 minutes - LAMP
ย 
Cassandra installation
Cassandra installationCassandra installation
Cassandra installation
ย 
Minicurso de Vagrant
Minicurso de VagrantMinicurso de Vagrant
Minicurso de Vagrant
ย 
Installing and running Postfix within a docker container from the command line
Installing and running Postfix within a docker container from the command lineInstalling and running Postfix within a docker container from the command line
Installing and running Postfix within a docker container from the command line
ย 
Dockerizing WordPress
Dockerizing WordPressDockerizing WordPress
Dockerizing WordPress
ย 
Compcon 2016 Workshop
Compcon 2016 WorkshopCompcon 2016 Workshop
Compcon 2016 Workshop
ย 
How to manage Microsoft Azure with open source
How to manage Microsoft Azure with open sourceHow to manage Microsoft Azure with open source
How to manage Microsoft Azure with open source
ย 
Gns3
Gns3Gns3
Gns3
ย 
OpenNebulaConf2015 2.02 Backing up your VMโ€™s with Bacula - Alberto Garcรญa
OpenNebulaConf2015 2.02 Backing up your VMโ€™s with Bacula - Alberto GarcรญaOpenNebulaConf2015 2.02 Backing up your VMโ€™s with Bacula - Alberto Garcรญa
OpenNebulaConf2015 2.02 Backing up your VMโ€™s with Bacula - Alberto Garcรญa
ย 
Docker in Action
Docker in ActionDocker in Action
Docker in Action
ย 
How to install ReactJS software
How to install ReactJS software How to install ReactJS software
How to install ReactJS software
ย 
Installing hive on ubuntu 16
Installing hive on ubuntu 16Installing hive on ubuntu 16
Installing hive on ubuntu 16
ย 

Viewers also liked

Edna Karr AP Biology Chapter 35 Review
Edna Karr AP Biology Chapter 35 ReviewEdna Karr AP Biology Chapter 35 Review
Edna Karr AP Biology Chapter 35 ReviewFrederick Johnson IV
ย 
Investigaciรณn Educativa
Investigaciรณn EducativaInvestigaciรณn Educativa
Investigaciรณn EducativaGilma Chacon
ย 
ะ—ะฐะฟะธััŒ ะฝะฐ ะพะฑัƒั‡ะตะฝะธะต ะฟะพ ะฟั€ะพะณั€ะฐะผะผะฐะผ ะดะพะฟะพะปะฝะธั‚ะตะปัŒะฝะพะณะพ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะฝะฐ 2014-2015 ัƒั‡ะต...
ะ—ะฐะฟะธััŒ ะฝะฐ ะพะฑัƒั‡ะตะฝะธะต ะฟะพ ะฟั€ะพะณั€ะฐะผะผะฐะผ ะดะพะฟะพะปะฝะธั‚ะตะปัŒะฝะพะณะพ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะฝะฐ 2014-2015 ัƒั‡ะต...ะ—ะฐะฟะธััŒ ะฝะฐ ะพะฑัƒั‡ะตะฝะธะต ะฟะพ ะฟั€ะพะณั€ะฐะผะผะฐะผ ะดะพะฟะพะปะฝะธั‚ะตะปัŒะฝะพะณะพ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะฝะฐ 2014-2015 ัƒั‡ะต...
ะ—ะฐะฟะธััŒ ะฝะฐ ะพะฑัƒั‡ะตะฝะธะต ะฟะพ ะฟั€ะพะณั€ะฐะผะผะฐะผ ะดะพะฟะพะปะฝะธั‚ะตะปัŒะฝะพะณะพ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะฝะฐ 2014-2015 ัƒั‡ะต...uvuodogm
ย 
Evaluaciรณn educativa
Evaluaciรณn educativaEvaluaciรณn educativa
Evaluaciรณn educativaGilma Chacon
ย 
How to get rid of your debt
How to get rid of your debtHow to get rid of your debt
How to get rid of your debtCleo Morisson
ย 
Clasificaciรณn de redes
Clasificaciรณn de redesClasificaciรณn de redes
Clasificaciรณn de redesGilma Chacon
ย 
ะกะธัั‚ะตะผะฐ ะฟะพะฒั‹ัˆะตะฝะธั ะบะฒะฐะปะธั„ะธะบะฐั†ะธะธ ั€ะฐะฑะพั‚ะฝะธะบะพะฒ ัะธัั‚ะตะผั‹ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะœะพัะบะฒั‹ ะฒ ัƒัะปะพะฒะธ...
ะกะธัั‚ะตะผะฐ ะฟะพะฒั‹ัˆะตะฝะธั ะบะฒะฐะปะธั„ะธะบะฐั†ะธะธ ั€ะฐะฑะพั‚ะฝะธะบะพะฒ ัะธัั‚ะตะผั‹ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะœะพัะบะฒั‹ ะฒ ัƒัะปะพะฒะธ...ะกะธัั‚ะตะผะฐ ะฟะพะฒั‹ัˆะตะฝะธั ะบะฒะฐะปะธั„ะธะบะฐั†ะธะธ ั€ะฐะฑะพั‚ะฝะธะบะพะฒ ัะธัั‚ะตะผั‹ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะœะพัะบะฒั‹ ะฒ ัƒัะปะพะฒะธ...
ะกะธัั‚ะตะผะฐ ะฟะพะฒั‹ัˆะตะฝะธั ะบะฒะฐะปะธั„ะธะบะฐั†ะธะธ ั€ะฐะฑะพั‚ะฝะธะบะพะฒ ัะธัั‚ะตะผั‹ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะœะพัะบะฒั‹ ะฒ ัƒัะปะพะฒะธ...uvuodogm
ย 
ะญั„ั„ะตะบั‚ะธะฒะฝั‹ะน ัƒั‡ะตะฑะฝั‹ะน ะฟะปะฐะฝ
ะญั„ั„ะตะบั‚ะธะฒะฝั‹ะน ัƒั‡ะตะฑะฝั‹ะน ะฟะปะฐะฝะญั„ั„ะตะบั‚ะธะฒะฝั‹ะน ัƒั‡ะตะฑะฝั‹ะน ะฟะปะฐะฝ
ะญั„ั„ะตะบั‚ะธะฒะฝั‹ะน ัƒั‡ะตะฑะฝั‹ะน ะฟะปะฐะฝuvuodogm
ย 
Niti aayog: An old wine in new bottle?
Niti aayog: An old wine in new bottle?Niti aayog: An old wine in new bottle?
Niti aayog: An old wine in new bottle?C La Kharkwal
ย 

Viewers also liked (10)

Edna Karr AP Biology Chapter 35 Review
Edna Karr AP Biology Chapter 35 ReviewEdna Karr AP Biology Chapter 35 Review
Edna Karr AP Biology Chapter 35 Review
ย 
Investigaciรณn Educativa
Investigaciรณn EducativaInvestigaciรณn Educativa
Investigaciรณn Educativa
ย 
ะ—ะฐะฟะธััŒ ะฝะฐ ะพะฑัƒั‡ะตะฝะธะต ะฟะพ ะฟั€ะพะณั€ะฐะผะผะฐะผ ะดะพะฟะพะปะฝะธั‚ะตะปัŒะฝะพะณะพ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะฝะฐ 2014-2015 ัƒั‡ะต...
ะ—ะฐะฟะธััŒ ะฝะฐ ะพะฑัƒั‡ะตะฝะธะต ะฟะพ ะฟั€ะพะณั€ะฐะผะผะฐะผ ะดะพะฟะพะปะฝะธั‚ะตะปัŒะฝะพะณะพ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะฝะฐ 2014-2015 ัƒั‡ะต...ะ—ะฐะฟะธััŒ ะฝะฐ ะพะฑัƒั‡ะตะฝะธะต ะฟะพ ะฟั€ะพะณั€ะฐะผะผะฐะผ ะดะพะฟะพะปะฝะธั‚ะตะปัŒะฝะพะณะพ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะฝะฐ 2014-2015 ัƒั‡ะต...
ะ—ะฐะฟะธััŒ ะฝะฐ ะพะฑัƒั‡ะตะฝะธะต ะฟะพ ะฟั€ะพะณั€ะฐะผะผะฐะผ ะดะพะฟะพะปะฝะธั‚ะตะปัŒะฝะพะณะพ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะฝะฐ 2014-2015 ัƒั‡ะต...
ย 
Evaluaciรณn educativa
Evaluaciรณn educativaEvaluaciรณn educativa
Evaluaciรณn educativa
ย 
How to get rid of your debt
How to get rid of your debtHow to get rid of your debt
How to get rid of your debt
ย 
Clasificaciรณn de redes
Clasificaciรณn de redesClasificaciรณn de redes
Clasificaciรณn de redes
ย 
Netpique introduction
Netpique introductionNetpique introduction
Netpique introduction
ย 
ะกะธัั‚ะตะผะฐ ะฟะพะฒั‹ัˆะตะฝะธั ะบะฒะฐะปะธั„ะธะบะฐั†ะธะธ ั€ะฐะฑะพั‚ะฝะธะบะพะฒ ัะธัั‚ะตะผั‹ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะœะพัะบะฒั‹ ะฒ ัƒัะปะพะฒะธ...
ะกะธัั‚ะตะผะฐ ะฟะพะฒั‹ัˆะตะฝะธั ะบะฒะฐะปะธั„ะธะบะฐั†ะธะธ ั€ะฐะฑะพั‚ะฝะธะบะพะฒ ัะธัั‚ะตะผั‹ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะœะพัะบะฒั‹ ะฒ ัƒัะปะพะฒะธ...ะกะธัั‚ะตะผะฐ ะฟะพะฒั‹ัˆะตะฝะธั ะบะฒะฐะปะธั„ะธะบะฐั†ะธะธ ั€ะฐะฑะพั‚ะฝะธะบะพะฒ ัะธัั‚ะตะผั‹ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะœะพัะบะฒั‹ ะฒ ัƒัะปะพะฒะธ...
ะกะธัั‚ะตะผะฐ ะฟะพะฒั‹ัˆะตะฝะธั ะบะฒะฐะปะธั„ะธะบะฐั†ะธะธ ั€ะฐะฑะพั‚ะฝะธะบะพะฒ ัะธัั‚ะตะผั‹ ะพะฑั€ะฐะทะพะฒะฐะฝะธั ะœะพัะบะฒั‹ ะฒ ัƒัะปะพะฒะธ...
ย 
ะญั„ั„ะตะบั‚ะธะฒะฝั‹ะน ัƒั‡ะตะฑะฝั‹ะน ะฟะปะฐะฝ
ะญั„ั„ะตะบั‚ะธะฒะฝั‹ะน ัƒั‡ะตะฑะฝั‹ะน ะฟะปะฐะฝะญั„ั„ะตะบั‚ะธะฒะฝั‹ะน ัƒั‡ะตะฑะฝั‹ะน ะฟะปะฐะฝ
ะญั„ั„ะตะบั‚ะธะฒะฝั‹ะน ัƒั‡ะตะฑะฝั‹ะน ะฟะปะฐะฝ
ย 
Niti aayog: An old wine in new bottle?
Niti aayog: An old wine in new bottle?Niti aayog: An old wine in new bottle?
Niti aayog: An old wine in new bottle?
ย 

Similar to Your own minecraft server on a linode vps

Alta disponibilidad en GNU/Linux
Alta disponibilidad en GNU/LinuxAlta disponibilidad en GNU/Linux
Alta disponibilidad en GNU/LinuxGuillermo Salas Macias
ย 
Lamp Server With Drupal Installation
Lamp Server With Drupal InstallationLamp Server With Drupal Installation
Lamp Server With Drupal Installationfranbow
ย 
Dev ops
Dev opsDev ops
Dev opsTom Hall
ย 
Tutorial CentOS 5 untuk Webhosting
Tutorial CentOS 5 untuk WebhostingTutorial CentOS 5 untuk Webhosting
Tutorial CentOS 5 untuk WebhostingBeni Krisbiantoro
ย 
Capistrano deploy Magento project in an efficient way
Capistrano deploy Magento project in an efficient wayCapistrano deploy Magento project in an efficient way
Capistrano deploy Magento project in an efficient waySylvain Rayรฉ
ย 
Quick-Start Guide: Deploying Your Cloudian HyperStore Hybrid Storage Service
Quick-Start Guide: Deploying Your Cloudian HyperStore Hybrid Storage ServiceQuick-Start Guide: Deploying Your Cloudian HyperStore Hybrid Storage Service
Quick-Start Guide: Deploying Your Cloudian HyperStore Hybrid Storage ServiceCloudian
ย 
Free radius billing server with practical vpn exmaple
Free radius billing server with practical vpn exmapleFree radius billing server with practical vpn exmaple
Free radius billing server with practical vpn exmapleChanaka Lasantha
ย 
Virtual Infrastructure
Virtual InfrastructureVirtual Infrastructure
Virtual InfrastructureBryan McLellan
ย 
R hive tutorial supplement 1 - Installing Hadoop
R hive tutorial supplement 1 - Installing HadoopR hive tutorial supplement 1 - Installing Hadoop
R hive tutorial supplement 1 - Installing HadoopAiden Seonghak Hong
ย 
ๅ›พๆ–‡่ฏฆ่งฃๅฎ‰่ฃ…Net backup 6.5ๅค‡ไปฝๆขๅคoracle 10g rac ๆ•ฐๆฎๅบ“
ๅ›พๆ–‡่ฏฆ่งฃๅฎ‰่ฃ…Net backup 6.5ๅค‡ไปฝๆขๅคoracle 10g rac ๆ•ฐๆฎๅบ“ๅ›พๆ–‡่ฏฆ่งฃๅฎ‰่ฃ…Net backup 6.5ๅค‡ไปฝๆขๅคoracle 10g rac ๆ•ฐๆฎๅบ“
ๅ›พๆ–‡่ฏฆ่งฃๅฎ‰่ฃ…Net backup 6.5ๅค‡ไปฝๆขๅคoracle 10g rac ๆ•ฐๆฎๅบ“maclean liu
ย 
9 creating cent_os 7_mages_for_dpdk_training
9 creating cent_os 7_mages_for_dpdk_training9 creating cent_os 7_mages_for_dpdk_training
9 creating cent_os 7_mages_for_dpdk_trainingvideos
ย 
02 Hadoop deployment and configuration
02 Hadoop deployment and configuration02 Hadoop deployment and configuration
02 Hadoop deployment and configurationSubhas Kumar Ghosh
ย 
Hadoop on osx
Hadoop on osxHadoop on osx
Hadoop on osxDevopam Mittra
ย 
Os dev tool box
Os dev tool boxOs dev tool box
Os dev tool boxbpowell29a
ย 
Control your deployments with Capistrano
Control your deployments with CapistranoControl your deployments with Capistrano
Control your deployments with CapistranoRamazan K
ย 
Dru lavigne servers-tutorial
Dru lavigne servers-tutorialDru lavigne servers-tutorial
Dru lavigne servers-tutorialDru Lavigne
ย 
Vagrant - Team Development made easy
Vagrant - Team Development made easyVagrant - Team Development made easy
Vagrant - Team Development made easyMarco Silva
ย 

Similar to Your own minecraft server on a linode vps (20)

Alta disponibilidad en GNU/Linux
Alta disponibilidad en GNU/LinuxAlta disponibilidad en GNU/Linux
Alta disponibilidad en GNU/Linux
ย 
Lamp Server With Drupal Installation
Lamp Server With Drupal InstallationLamp Server With Drupal Installation
Lamp Server With Drupal Installation
ย 
Sun raysetup
Sun raysetupSun raysetup
Sun raysetup
ย 
Dev ops
Dev opsDev ops
Dev ops
ย 
Tutorial CentOS 5 untuk Webhosting
Tutorial CentOS 5 untuk WebhostingTutorial CentOS 5 untuk Webhosting
Tutorial CentOS 5 untuk Webhosting
ย 
Linux
LinuxLinux
Linux
ย 
Capistrano deploy Magento project in an efficient way
Capistrano deploy Magento project in an efficient wayCapistrano deploy Magento project in an efficient way
Capistrano deploy Magento project in an efficient way
ย 
Quick-Start Guide: Deploying Your Cloudian HyperStore Hybrid Storage Service
Quick-Start Guide: Deploying Your Cloudian HyperStore Hybrid Storage ServiceQuick-Start Guide: Deploying Your Cloudian HyperStore Hybrid Storage Service
Quick-Start Guide: Deploying Your Cloudian HyperStore Hybrid Storage Service
ย 
Free radius billing server with practical vpn exmaple
Free radius billing server with practical vpn exmapleFree radius billing server with practical vpn exmaple
Free radius billing server with practical vpn exmaple
ย 
Virtual Infrastructure
Virtual InfrastructureVirtual Infrastructure
Virtual Infrastructure
ย 
Kvm setup
Kvm setupKvm setup
Kvm setup
ย 
R hive tutorial supplement 1 - Installing Hadoop
R hive tutorial supplement 1 - Installing HadoopR hive tutorial supplement 1 - Installing Hadoop
R hive tutorial supplement 1 - Installing Hadoop
ย 
ๅ›พๆ–‡่ฏฆ่งฃๅฎ‰่ฃ…Net backup 6.5ๅค‡ไปฝๆขๅคoracle 10g rac ๆ•ฐๆฎๅบ“
ๅ›พๆ–‡่ฏฆ่งฃๅฎ‰่ฃ…Net backup 6.5ๅค‡ไปฝๆขๅคoracle 10g rac ๆ•ฐๆฎๅบ“ๅ›พๆ–‡่ฏฆ่งฃๅฎ‰่ฃ…Net backup 6.5ๅค‡ไปฝๆขๅคoracle 10g rac ๆ•ฐๆฎๅบ“
ๅ›พๆ–‡่ฏฆ่งฃๅฎ‰่ฃ…Net backup 6.5ๅค‡ไปฝๆขๅคoracle 10g rac ๆ•ฐๆฎๅบ“
ย 
9 creating cent_os 7_mages_for_dpdk_training
9 creating cent_os 7_mages_for_dpdk_training9 creating cent_os 7_mages_for_dpdk_training
9 creating cent_os 7_mages_for_dpdk_training
ย 
02 Hadoop deployment and configuration
02 Hadoop deployment and configuration02 Hadoop deployment and configuration
02 Hadoop deployment and configuration
ย 
Hadoop on osx
Hadoop on osxHadoop on osx
Hadoop on osx
ย 
Os dev tool box
Os dev tool boxOs dev tool box
Os dev tool box
ย 
Control your deployments with Capistrano
Control your deployments with CapistranoControl your deployments with Capistrano
Control your deployments with Capistrano
ย 
Dru lavigne servers-tutorial
Dru lavigne servers-tutorialDru lavigne servers-tutorial
Dru lavigne servers-tutorial
ย 
Vagrant - Team Development made easy
Vagrant - Team Development made easyVagrant - Team Development made easy
Vagrant - Team Development made easy
ย 

Recently uploaded

Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034 Independent Chenna...
Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034  Independent Chenna...Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034  Independent Chenna...
Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034 Independent Chenna... Shivani Pandey
ย 
Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...
Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...
Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...ritikasharma
ย 
Borum Call Girls Service โ˜Ž ๏ธ93326-06886 โค๏ธโ€๐Ÿ”ฅ Enjoy 24/7 Escortย Service
Borum Call Girls Service โ˜Ž ๏ธ93326-06886 โค๏ธโ€๐Ÿ”ฅ Enjoy 24/7 Escortย ServiceBorum Call Girls Service โ˜Ž ๏ธ93326-06886 โค๏ธโ€๐Ÿ”ฅ Enjoy 24/7 Escortย Service
Borum Call Girls Service โ˜Ž ๏ธ93326-06886 โค๏ธโ€๐Ÿ”ฅ Enjoy 24/7 Escortย ServiceDamini Dixit
ย 
Call Girls Bhandara Just Call 8617697112 Top Class Call Girl Service Available
Call Girls Bhandara Just Call 8617697112 Top Class Call Girl Service AvailableCall Girls Bhandara Just Call 8617697112 Top Class Call Girl Service Available
Call Girls Bhandara Just Call 8617697112 Top Class Call Girl Service AvailableNitya salvi
ย 
โคPersonal Whatsapp Number Keylong Call Girls 8617697112 ๐Ÿ’ฆโœ….
โคPersonal Whatsapp Number Keylong Call Girls 8617697112 ๐Ÿ’ฆโœ….โคPersonal Whatsapp Number Keylong Call Girls 8617697112 ๐Ÿ’ฆโœ….
โคPersonal Whatsapp Number Keylong Call Girls 8617697112 ๐Ÿ’ฆโœ….Nitya salvi
ย 
(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...
(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...
(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With... Shivani Pandey
ย 
Thane West \ Escort Service in Mumbai - 450+ Call Girl Cash Payment 983332523...
Thane West \ Escort Service in Mumbai - 450+ Call Girl Cash Payment 983332523...Thane West \ Escort Service in Mumbai - 450+ Call Girl Cash Payment 983332523...
Thane West \ Escort Service in Mumbai - 450+ Call Girl Cash Payment 983332523...hotbabesbook
ย 
Bhimtal โคCALL GIRL 8617697112 โคCALL GIRLS IN Bhimtal ESCORT SERVICEโคCALL GIRL
Bhimtal โคCALL GIRL 8617697112 โคCALL GIRLS IN Bhimtal ESCORT SERVICEโคCALL GIRLBhimtal โคCALL GIRL 8617697112 โคCALL GIRLS IN Bhimtal ESCORT SERVICEโคCALL GIRL
Bhimtal โคCALL GIRL 8617697112 โคCALL GIRLS IN Bhimtal ESCORT SERVICEโคCALL GIRLNitya salvi
ย 
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
ย 
โคPersonal Whatsapp Number Mukteshwar Call Girls 8617697112 ๐Ÿ’ฆโœ….
โคPersonal Whatsapp Number Mukteshwar Call Girls 8617697112 ๐Ÿ’ฆโœ….โคPersonal Whatsapp Number Mukteshwar Call Girls 8617697112 ๐Ÿ’ฆโœ….
โคPersonal Whatsapp Number Mukteshwar Call Girls 8617697112 ๐Ÿ’ฆโœ….Nitya salvi
ย 
Verified Trusted Call Girls Tambaram Chennai โœ”โœ”7427069034 Independent Chenna...
Verified Trusted Call Girls Tambaram Chennai โœ”โœ”7427069034  Independent Chenna...Verified Trusted Call Girls Tambaram Chennai โœ”โœ”7427069034  Independent Chenna...
Verified Trusted Call Girls Tambaram Chennai โœ”โœ”7427069034 Independent Chenna... Shivani Pandey
ย 
๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...rahim quresi
ย 
๐Ÿ“ž Contact Number 8617697112 VIP Ganderbal Call Girls
๐Ÿ“ž Contact Number 8617697112 VIP Ganderbal Call Girls๐Ÿ“ž Contact Number 8617697112 VIP Ganderbal Call Girls
๐Ÿ“ž Contact Number 8617697112 VIP Ganderbal Call GirlsNitya salvi
ย 
Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...
Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...
Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...ritikasharma
ย 
๐“€คCall On 6297143586 ๐“€ค Park Street Call Girls In All Kolkata 24/7 Provide Call...
๐“€คCall On 6297143586 ๐“€ค Park Street Call Girls In All Kolkata 24/7 Provide Call...๐“€คCall On 6297143586 ๐“€ค Park Street Call Girls In All Kolkata 24/7 Provide Call...
๐“€คCall On 6297143586 ๐“€ค Park Street Call Girls In All Kolkata 24/7 Provide Call...rahim quresi
ย 
๐Ÿ“ž Contact Number 8617697112 VIP East Sikkim Call Girls
๐Ÿ“ž Contact Number 8617697112 VIP East Sikkim Call Girls๐Ÿ“ž Contact Number 8617697112 VIP East Sikkim Call Girls
๐Ÿ“ž Contact Number 8617697112 VIP East Sikkim Call GirlsNitya salvi
ย 
Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...rahim quresi
ย 
Top Rated Pune Call Girls Pimpri Chinchwad โŸŸ 6297143586 โŸŸ Call Me For Genuin...
Top Rated  Pune Call Girls Pimpri Chinchwad โŸŸ 6297143586 โŸŸ Call Me For Genuin...Top Rated  Pune Call Girls Pimpri Chinchwad โŸŸ 6297143586 โŸŸ Call Me For Genuin...
Top Rated Pune Call Girls Pimpri Chinchwad โŸŸ 6297143586 โŸŸ Call Me For Genuin...Call Girls in Nagpur High Profile
ย 
VIP Model Call Girls Budhwar Peth ( Pune ) Call ON 8005736733 Starting From 5...
VIP Model Call Girls Budhwar Peth ( Pune ) Call ON 8005736733 Starting From 5...VIP Model Call Girls Budhwar Peth ( Pune ) Call ON 8005736733 Starting From 5...
VIP Model Call Girls Budhwar Peth ( Pune ) Call ON 8005736733 Starting From 5...SUHANI PANDEY
ย 
Call Girls Bellandur โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)
Call Girls Bellandur โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)Call Girls Bellandur โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)
Call Girls Bellandur โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)amitlee9823
ย 

Recently uploaded (20)

Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034 Independent Chenna...
Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034  Independent Chenna...Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034  Independent Chenna...
Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034 Independent Chenna...
ย 
Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...
Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...
Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...
ย 
Borum Call Girls Service โ˜Ž ๏ธ93326-06886 โค๏ธโ€๐Ÿ”ฅ Enjoy 24/7 Escortย Service
Borum Call Girls Service โ˜Ž ๏ธ93326-06886 โค๏ธโ€๐Ÿ”ฅ Enjoy 24/7 Escortย ServiceBorum Call Girls Service โ˜Ž ๏ธ93326-06886 โค๏ธโ€๐Ÿ”ฅ Enjoy 24/7 Escortย Service
Borum Call Girls Service โ˜Ž ๏ธ93326-06886 โค๏ธโ€๐Ÿ”ฅ Enjoy 24/7 Escortย Service
ย 
Call Girls Bhandara Just Call 8617697112 Top Class Call Girl Service Available
Call Girls Bhandara Just Call 8617697112 Top Class Call Girl Service AvailableCall Girls Bhandara Just Call 8617697112 Top Class Call Girl Service Available
Call Girls Bhandara Just Call 8617697112 Top Class Call Girl Service Available
ย 
โคPersonal Whatsapp Number Keylong Call Girls 8617697112 ๐Ÿ’ฆโœ….
โคPersonal Whatsapp Number Keylong Call Girls 8617697112 ๐Ÿ’ฆโœ….โคPersonal Whatsapp Number Keylong Call Girls 8617697112 ๐Ÿ’ฆโœ….
โคPersonal Whatsapp Number Keylong Call Girls 8617697112 ๐Ÿ’ฆโœ….
ย 
(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...
(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...
(TOP CLASS) Call Girls In Nungambakkam Phone 7427069034 Call Girls Model With...
ย 
Thane West \ Escort Service in Mumbai - 450+ Call Girl Cash Payment 983332523...
Thane West \ Escort Service in Mumbai - 450+ Call Girl Cash Payment 983332523...Thane West \ Escort Service in Mumbai - 450+ Call Girl Cash Payment 983332523...
Thane West \ Escort Service in Mumbai - 450+ Call Girl Cash Payment 983332523...
ย 
Bhimtal โคCALL GIRL 8617697112 โคCALL GIRLS IN Bhimtal ESCORT SERVICEโคCALL GIRL
Bhimtal โคCALL GIRL 8617697112 โคCALL GIRLS IN Bhimtal ESCORT SERVICEโคCALL GIRLBhimtal โคCALL GIRL 8617697112 โคCALL GIRLS IN Bhimtal ESCORT SERVICEโคCALL GIRL
Bhimtal โคCALL GIRL 8617697112 โคCALL GIRLS IN Bhimtal ESCORT SERVICEโคCALL GIRL
ย 
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
ย 
โคPersonal Whatsapp Number Mukteshwar Call Girls 8617697112 ๐Ÿ’ฆโœ….
โคPersonal Whatsapp Number Mukteshwar Call Girls 8617697112 ๐Ÿ’ฆโœ….โคPersonal Whatsapp Number Mukteshwar Call Girls 8617697112 ๐Ÿ’ฆโœ….
โคPersonal Whatsapp Number Mukteshwar Call Girls 8617697112 ๐Ÿ’ฆโœ….
ย 
Verified Trusted Call Girls Tambaram Chennai โœ”โœ”7427069034 Independent Chenna...
Verified Trusted Call Girls Tambaram Chennai โœ”โœ”7427069034  Independent Chenna...Verified Trusted Call Girls Tambaram Chennai โœ”โœ”7427069034  Independent Chenna...
Verified Trusted Call Girls Tambaram Chennai โœ”โœ”7427069034 Independent Chenna...
ย 
๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
ย 
๐Ÿ“ž Contact Number 8617697112 VIP Ganderbal Call Girls
๐Ÿ“ž Contact Number 8617697112 VIP Ganderbal Call Girls๐Ÿ“ž Contact Number 8617697112 VIP Ganderbal Call Girls
๐Ÿ“ž Contact Number 8617697112 VIP Ganderbal Call Girls
ย 
Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...
Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...
Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...
ย 
๐“€คCall On 6297143586 ๐“€ค Park Street Call Girls In All Kolkata 24/7 Provide Call...
๐“€คCall On 6297143586 ๐“€ค Park Street Call Girls In All Kolkata 24/7 Provide Call...๐“€คCall On 6297143586 ๐“€ค Park Street Call Girls In All Kolkata 24/7 Provide Call...
๐“€คCall On 6297143586 ๐“€ค Park Street Call Girls In All Kolkata 24/7 Provide Call...
ย 
๐Ÿ“ž Contact Number 8617697112 VIP East Sikkim Call Girls
๐Ÿ“ž Contact Number 8617697112 VIP East Sikkim Call Girls๐Ÿ“ž Contact Number 8617697112 VIP East Sikkim Call Girls
๐Ÿ“ž Contact Number 8617697112 VIP East Sikkim Call Girls
ย 
Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
ย 
Top Rated Pune Call Girls Pimpri Chinchwad โŸŸ 6297143586 โŸŸ Call Me For Genuin...
Top Rated  Pune Call Girls Pimpri Chinchwad โŸŸ 6297143586 โŸŸ Call Me For Genuin...Top Rated  Pune Call Girls Pimpri Chinchwad โŸŸ 6297143586 โŸŸ Call Me For Genuin...
Top Rated Pune Call Girls Pimpri Chinchwad โŸŸ 6297143586 โŸŸ Call Me For Genuin...
ย 
VIP Model Call Girls Budhwar Peth ( Pune ) Call ON 8005736733 Starting From 5...
VIP Model Call Girls Budhwar Peth ( Pune ) Call ON 8005736733 Starting From 5...VIP Model Call Girls Budhwar Peth ( Pune ) Call ON 8005736733 Starting From 5...
VIP Model Call Girls Budhwar Peth ( Pune ) Call ON 8005736733 Starting From 5...
ย 
Call Girls Bellandur โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)
Call Girls Bellandur โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)Call Girls Bellandur โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)
Call Girls Bellandur โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)
ย 

Your own minecraft server on a linode vps

  • 1. Your Own Minecraft Server on a Linode VPS
  • 2.
  • 3. Running Minecraft Server on a Linode Debian Instance If you are having issues following the official minecraft wiki then you are not alone - I found it much too generic and could not get the 'init.d' startup script to work. Following is a step by step guide to quickly set up your on game server running on Debian/Ubuntu distribution. Install Java We are going to install OpenJDK which for all intents and purposes is equivalent to Sun java but without licensing issues. Execute below commands under root or using sudo.
  • 4. # aptitude update # aptitude install openjdk-6-jre-headless
  • 5. Download and Install Minecraft Server We are going to download and install into '/usr/local/minecraft' as per the Debian FilesystemHierarchyStandard. # mkdir /usr/local/minecraft ๏ฌ # cd /usr/local/minecraft/ ๏ฌ # wget ht tp://dl.bukkit.org/latest-rb/craftbukkit.jar We are installing the bukkit minecraft version rather then the vanilla one, it is fully comptabible with the vanilla server but lets your run plugins to effectivley manage your server
  • 6. Server Settings Create the minecraft servers .properties file. I suggest you at least modify the 'motd', and 'level-seed' so that your world is a little personal to you. # cd /usr/local/minecraft/ # nano server.properties
  • 7. #Danols Minecraft Server properties allow-nether=true level-name=world enable-query=false allow-flight=false server-port=25565 level-type=DEFAULT enable-rcon=false level-seed=Artomix #ht tp://seedhunter.blogspot.com/2012/03/jungle- island.html server-ip= max-build-height=256
  • 9. Automatic Startup Compared that what is posted on the Minecraft Wiki the below is a simple startup script using Debians/Ubuntus start-stop-deamon utility, it does not have the update server, or run file system in memory option; in my opinion Java+Linux do a good job system caching on demand and any speeds from running in memory The server is run under user 'minecraft-server' and group 'daemon' to increase security - this account and group is created as follows: # useradd --home-dir /usr/local/minecraft-server --no-create- home -g daemon --shell /bin/false minecraft-server # groupadd daemon
  • 10. Create the startup script as follows # cd /etc/init.d/ # touch minecraft-server # chmod +x minecraft-server
  • 11. Paste the following code into the script and make sure to modify the DAEMON_ARGS setting to reflect your memory allocation. #!/bin/bash ### BEGIN INIT INFO # Provides: minecraft_server # Required-Start: $local_fs $remote_fs $network # Required-Stop: $local_fs $remote_fs $network # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Description: Minecraft server debian init script.
  • 12. # You can use this as a template or symbolic link it into `/etc/init.d` on Debian system # PATH should only include /usr/* if it runs after the mountnfs.sh script PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin DESC="Minecraft Server" NAME=minecraft_server.jar SCREENNAME=minecraft-server # the session screen game given DAEMON="/usr/bin/screen" DAEMONUSER=minecraft-server DAEMONGROUP=daemon # the -Xincgc options enable incremental garbage collector which slows # execution but makes more memory efficient.
  • 13. DAEMON_ARGS="-DmS $SCREENNAME java -Xincgc -Xms32M -Xmx304M -jar /usr/local/minecraft-server/$NAME nogui" # Lowest memory limit used was about 80M on fresh start. # For screen we use `-DmS` instead of -dmS since -D doesn't detach the screen so our pid # file created by start-stop-deamon is correct. PIDFILE=/usr/local/minecraft-server/$NAME.pid SCRIPTNAME=/etc/init.d/$NAME # Exit if the package is not installed #[ -f "$DAEMON" ] || exit 0 # Read configuration variable file if it is present [ -r /etc/default/$NAME ] &&. /etc/default/$NAME
  • 14. # Load the VERBOSE setting and other rcS variables . /lib/init/vars.sh # Define LSB log_* functions. # Depend on lsb-base (>= 3.0-6) to ensure that this file is present. . /lib/lsb/init-functions # Function that starts the daemon/service # do_start()
  • 15. Activate the startup script and start the server by executing the following commands: # update-rc.d minecraft-server defaults # /etc/init.d/minecraft-server start