![]() |
|
Complete Guide To Creating Minecraft Servers (Windows, Mac, VPS, Installing Plugins) - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Gaming (https://sinister.ly/Forum-Gaming) +--- Forum: Cross-Platform (https://sinister.ly/Forum-Cross-Platform) +--- Thread: Complete Guide To Creating Minecraft Servers (Windows, Mac, VPS, Installing Plugins) (/Thread-Complete-Guide-To-Creating-Minecraft-Servers-Windows-Mac-VPS-Installing-Plugins) Pages:
1
2
|
Complete Guide To Creating Minecraft Servers (Windows, Mac, VPS, Installing Plugins) - I Am JT - 06-17-2013 ![]() Windows: Step 1. Download CraftBukkit (Recommended Build) From Here Step 2. Put the .jar file in the directory you'd like the server to run from Step 3. Open a text editor and type: Quote:java -Xms1024M -Xmx1024M -jar craftbukkit.jar -o true Step 4. Save the file as run.bat Step 5. Double Click the Run.bat File Step 6. Type "stop" into the console to close the server Source: Craftbukkit Mac OSX: Step 1. Install Java Since OS X 10.7 Java does not come packaged with OS X. You will need to install java from the Apple's website Java For OS X Lion Step 2. Obtaining the Server Files To run a server you will need the server jars, i.e. the server files. We will need a place to put the files. Step 3. Create a New Folder Open up finder, and create a new folder in your Home folder named CraftBukkit Step 4. Download the File Download the server files. You can download the latest builds from the front page of the wiki. Note: Download the stable build if you are not chasing the cutting edge in the development build Step 5. Move the File Move the file from the Downloads folder to the CraftBukkit folder you created. Step 6. Obtaining startup script To easily start the server you will need a startup script. The following is a basic server script to start your server. Step 7. Open up TextEdit set it to plain text mode under format and paste the following in Quote:#!/bin/bashStep 7. Save the file Save it in your CraftBukkit folder as start_server.command Step 8. Allow the script to run Step 9. Open up Terminal.app Step 10.Type into Terminal.app chmod a+x Warning: Do not hit return 3. drag the start_server.command into Terminal.app Step 11. hit return Step 12. Starting the server From this point on you can start the server by double-clicking start_server.command. You will need to run the server once for it to generate some configuration files. Warning:To stop the server, do not close the terminal/command prompt window. Instead, type 'stop' into the console. Closing the terminal window without stopping the server could lead to corruption of the save files. Source: Craftbukkit VPS Setup Step 1. Login to your VPS via Putty or the other terminal you're using and enter the command below. Quote:yum install java-1.6.0-openjdkYour system will now attempt to install java build 1.6.0, which is the version required to run the minecraft server software. Just let it run, if it asks any questions just type "y" where/when it asks for you to do so. Step 2. Let's create a new directory named "minecraft" by entering the command Quote:mkdir minecraftNext enter Quote:cd minecraftAfter entering that command, you should be greeted with the return of "username@server minecraft Step 3. Now, we need to create a new screen. This is important for when you close the terminal, the server stays up and continues to run without the need of the terminal being open on your computer 24/7. To begin enter the following command Quote:screen -dmS minecraft -t minecraftNow after creating that screen session with the window ID of Minecraft, enter this command to attach to that created session. Quote:screen -r minecraftStep 4.While we remain in the minecraft directory, were going to download the files in here. Start by running the command Quote:wget http://minecraft.net/download/minecraft_server.jarStep 5.This is the last step needed to get your server up and running, this code will start the server. Quote:java -Xmx1024M -Xms1024M -jar minecraft_server.jar nogui(Where it says 1024M is where you type the amount of RAM you want the server to use, example: if you purchased a server with 2 Gigs of RAM and you want to use all 2 Gigs you would type 2000M in the replacement of 1024M) Installing Plugins Bukkit Is Required. RE: How to Setup Minecraft Servers. - OversouL - 06-17-2013 Nice tut. Thanks for this. I'm sure this will help a lot of members. RE: How to Setup Minecraft Servers. - Sirius - 06-17-2013 Great tutorial, this can help a lot of members RE: How to Setup Minecraft Servers. - Wonders - 06-17-2013 Awesome tutorial, thanks a lot for sharing this with us. RE: How to Setup Minecraft Servers. - Storm_DZ - 06-17-2013 (06-17-2013, 02:07 PM)I Am JT Wrote: Is there any chance you could set one up for me? Like a dedicated one? RE: How to Setup Minecraft Servers. - Cosmic - 06-17-2013 This is a really nice thread! Ill be sure to reference it when in need. Thanks noob. RE: How to Setup Minecraft Servers. - Welfare - 06-17-2013 Very nice thread!, Very informative! RE: How to Setup Minecraft Servers. - Sunlight - 06-17-2013 Very nice guide. Thanks for this, this will be a big help to many members. RE: How to Setup Minecraft Servers. - Lexi - 06-19-2013 Nice guide I might make one for CentOS soon.
RE: How to Setup Minecraft Servers. - I Am JT - 06-20-2013 Updated the thread for setting it up on a Linux VPS & Installing Plugins. CentOS and Windows VPS Guides Soon. |