Installing A Mincraft server on VPS?
2 replies [Last post]
CFCParadox
WoM Member
Members
WoM Member: 43908
WoM Coins: 0

Are there any links or tutorials for this?

Thanks,
CFCParadox

Jon
WoM Member
Members
WoM Member: 4062
WoM Coins: 20
Do these commands in order -

Do these commands in order - tell me if you have any troubles.

cd /

mkdir minecraft

cd minecraft

wget http://minecraft.net/minecraft-server.zip

unzip minecraft-server.zip

--- You can then edit files such as admins.txt etc using nano, for example 'nano server.properties' and 'nano admins.txt'.

--- Once you have finished configuring the server to your liking, run the command below to run the server.

nohup java -cp minecraft-server.jar com.mojang.minecraft.server.MinecraftServer

--- To kill the server first run 'ps aux'. Find a line that looks like the one below.

root **13479** 0.9 0.5 185913 46100 ? Jul16 13:10 java -cp minecraft-server.jar

com.mojang.minecraft.server.MinecraftServer

--- You want to find that line, then look for the PID on the line (usually the second number). Then run the command below to kill it.

kill 13479

CFCParadox
WoM Member
Members
WoM Member: 43908
WoM Coins: 0
Sorry for the late response

Sorry for the late response and thanks for your help! But how do you edit the admins, builders and etc...