![]() |
|
Install a Minecraft Server on a VPS 3 or 4 - Printable Version +- Free VPS Discussion (http://freevps.us) +-- Forum: Free VPS Discussion (/forum-1.html) +--- Forum: Tutorials (/forum-7.html) +--- Thread: Install a Minecraft Server on a VPS 3 or 4 (/thread-2516.html) Pages: 1 2 |
Install a Minecraft Server on a VPS 3 or 4 - ninetailfox97 - 11-09-2011 09:35 AM this tutorial is for centos, so please do not post about it not working in ubuntu or debian. First install java: 1. yum remove java this will remove the java that does not work on low ram. 2. install the ibm jre idk if these links will expire or not: Ibm Jre x86 Ibm Jre 64-bit if these don't work, you will need to login: http://www.ibm.com/developerworks/java/jdk/linux/download.html download java se 6 for your architecture 3. install using yum localinstall --nogpgcheck filename filename is the name of the ibm jre rpm package. 4. ln -s /opt/ibm/java-i386-60/jre/bin/java /usr/bin/java or ln -s /opt/ibm/java-x86_64-60/jre/bin/java /usr/bin/java i just found out you can also use a .bashrc alias: cd ~ open .bashrc with your favorite text editor add: alias java='/opt/ibm/java-i386-60/jre/bin/java' or add: alias java='/opt/ibm/java-x86_64-60/jre/bin/java' 5. its installed and ready to go! java -version now for minecraft, all you need to do now is java -jar minecraft_server.jar! EDIT: the download links above have expired, please do not ask for a new link, just make an account. or if someone is willing to upload it to some filesharing site, I will post those links up. RE: Install a Minecraft Server on a VPS 3 or 4 - luis123456 - 11-09-2011 11:20 AM http://wiki.bukkit.org/CraftBukkit_CentOS_Server_Setup here you go. Btw, minecraft is for griefing, or some see it like it. Am sorry to see all that I built go griefed. RE: Install a Minecraft Server on a VPS 3 or 4 - Retiredscv - 11-09-2011 12:40 PM (11-09-2011 09:35 AM)ninetailfox97 Wrote: 3. install using yum locainstall --nogpgcheck filename For people who are having issues with the third step, it is : yum localinstall --nogpgcheck filename by the way, i manage to start the server, but the problem is that i cant connect to it... ... RE: Install a Minecraft Server on a VPS 3 or 4 - ninetailfox97 - 11-09-2011 03:09 PM oops, you're right, i forgot the 'l'. but i'm not sure why you can't connect. (11-09-2011 11:20 AM)luis123456 Wrote: http://wiki.bukkit.org/CraftBukkit_CentOS_Server_Setup here you go. you should have used permissions RE: Install a Minecraft Server on a VPS 3 or 4 - Retiredscv - 11-11-2011 04:42 PM (11-09-2011 11:20 AM)luis123456 Wrote: Btw, minecraft is for griefing, or some see it like it. Am sorry to see all that I built go griefed. What do you guys mean griefing? I really have no idea what you are talking about. RE: Install a Minecraft Server on a VPS 3 or 4 - DeathProxy - 11-11-2011 05:39 PM Griefing is when someone causes grief. In Minecraft, griefing would be when someone logs onto your server to destroy all that they can, which causes grief. RE: Install a Minecraft Server on a VPS 3 or 4 - Retiredscv - 11-12-2011 08:55 PM (11-11-2011 05:39 PM)DeathProxy Wrote: Griefing is when someone causes grief. In Minecraft, griefing would be when someone logs onto your server to destroy all that they can, which causes grief. So, how do we solve this issue? Any idea? Is there any other way than to manually back up the world data everyday? RE: Install a Minecraft Server on a VPS 3 or 4 - videotube - 11-12-2011 10:37 PM This work on a other VPS? RE: Install a Minecraft Server on a VPS 3 or 4 - dmmcintyre3 - 11-13-2011 03:54 AM (11-12-2011 08:55 PM)Retiredscv Wrote:(11-11-2011 05:39 PM)DeathProxy Wrote: Griefing is when someone causes grief. In Minecraft, griefing would be when someone logs onto your server to destroy all that they can, which causes grief. Plugins like WorldGuard can be used to protect areas. RE: Install a Minecraft Server on a VPS 3 or 4 - ninetailfox97 - 11-13-2011 04:20 AM (11-12-2011 10:37 PM)videotube Wrote: This work on a other VPS? this would work on any vps with atleast the ram specs of a vps 3 or 4. |