마인크래프트 서버파일 다운로드받기
Minecraft_Server.exe 또는 minecraft_server.jar 파일을 Minecraft downloads page에서 다운로드받는다.
서버 파일의 확장자에 따라서 사용할 수 있는 운영체제가 달라지는데 윈도우 운영체제 사용자는 확장자가 exe 인 파일과 jar 인 파일을 모두 사용할 수 있고, 맥OS 또는 리눅스 운영체제 사용자는 확장자가 jar 인 파일만 사용할 수 있다.
It is recommended that you create a folder either on your computer's desktop, or elsewhere in your computer, for the server files. The server app should go in the folder you create.
Note: There is also custom server software available, but note that these applications are not supported by Mojang.
윈도우 운영체제용 설명서
자바 버전이 1.6 이상인지 확인하고 최신버전을 설치하기
- 자바 버전 6 이 설치되어 있는지 확인해야 한다. 확인하기 위해서는 CMD (명령 프롬프트) 를 열어야 된다.
- 윈도우 Vista/7 버전에서는 시작을 클릭하고, 찾기 공간에 CMD를 입력하고, 엔터를 누른다.
- 윈도우 XP 운영체제를 사용할 때에는 시작 > 실행 을 클릭하고 나타나는 창에 CMD 라고 친 뒤에 확인을 누른다. 윈도우 키와 R 키를 누르는 것으로도 실행 창을 열 수 있다.
- CMD (명령 프롬프트) 에서 다음 명령어를 치고 엔터를 누르면 된다 :
java -version - Java 와 그 버전이 나타날 것인데 "Java version 1.6" 이상이면 서버 실행이 가능하다.
- 만약 자바가 이전 버전(1.6보다 낮을때)는 이 에러 메세지가 뜰 것이다: "
'Java' is not recognized as an internal or external command, operable program or batch file." 그럼 자바를 업데이트해야 한다. 32-비트 사용자들은 여기서 패치 프로그램을 받을 수 있다: Java download page. 만약 당신이 64-비트 운영체제 사용자라면 여기서 다운로드 받으면 된다:Java download page. - 자바의 최신버전을 설치하였다면 명령어(
java -version)를 다시 입력해서 버전을 확인해 보아라.- 만약 여전히 오류가 있다면, 아래 내용에 따라 자바를 시스템에 집적 패치하라.
- 컴퓨터 바탕화면을 오른쪽 클릭한다.
- 제어판(C) 을 클릭한다.
- "Advanced system settings" 를 클릭한다.
- "Environment Variables" 를 클릭한다
- Under system variables, find the Path variable.
- Click edit, and append to the end of the value:
;"c:\Program Files\Java\jre6\bin". If you use 32-bit Java on a 64-bit OS use:;"c:\Program Files (x86)\Java\jre6\bin" - 이제 명령 프롬프트를 다시 킨 뒤 버전을 재확인한다.
마인크래프트 서버 만들기 (확장자가 exe 인 파일용)
"Minecraft_Server.exe"를 키면 서버가 자동으로 시작된다.
If Windows does not recognize the filetype (You are being prompted to select a program to open it with), it may be because Minecraft_Server is missing the .exe extension. This can be fixed by renaming the Minecraft_Server file to Minecraft_Server.exe. If it worked the icon should now be the minecraft symbol.
If this does not work you will have to go into command prompt by opening run and typing cmd.exe and pressing enter. Once there you need to navigate to the folder you have created.
To do this:
1. Ensure you are in the proper drive (usually c drive). Type C: and then hit enter to access the c drive
2. Now you need to call the directory (open the folder). Type cd \"folder name" then hit enter. Make sure to include the quotation
3. Ensure you are in the proper directory. Type dir and command will generate a list of contents of the folder, you should see minecraft_server there.
4. Rename Minecraft. Type rename minecraft_server minecraft_server.exe then hit enter.
This should add the .exe extension to the executable and it should now operate correctly
마인크래프트 서버 만들기 (확장자가 jar 인 파일용)
If you have the .jar version, you will need to have a path variable set up for Java in order to start the jar version of the server. Refer to step 3 of "Verifying and Installing the Latest Java" above to set up a path variable.
To start the jar version of Minecraft on Windows, create a new file in Notepad, and paste in
java -Xms512M -Xmx1024M -jar minecraft_server.jar
Save the file as startserver.bat, and place the file in the same folder as minecraft_server.jar. The .bat extension saves the file as a batch file.
Double click startserver.bat, and the Minecraft server will run.
Starting the jar version without altering your system path
To start minecraft.jar server without having to change your system path variable you need to instead express the path variable for Java in the "start.bat" file. This is handy because it allows you to still run commands from command prompt using the default system path, without having to constantly edit the system path.
- To do this open your start.bat file (or whatever you've named it) with Notepad
- On the very first line add the command
@echo off
so that a command window isn't opened to show the output from our start file - On the next line make sure the system can find Java (also called the Java Runtime Environment or JRE) by adding it to the Path Environment Variable. On a current Windows PC Java will be most commonly located at "C:\Program Files (x86)\Java\jre6\bin", so what you would then write is
path=%PATH%;%ProgramFiles(x86)%\Java\jre6\bin
where%PATH%contains the existing Path values and%ProgramFiles(x86)%contains the location of your 32bit Program Files - usually "C:\Program Files (x86)" - Finally, make sure on the last line you have the command that starts the Minecraft server itself:
java -Xms512M -Xmx1024M -jar minecraft_server.jar - If you prefer not to use the server's Graphical User Interface (GUI) to enter administration commands, simply add the option
noguito the end of the last command above, so that it reads:
java -Xms512M -Xmx1024M -jar minecraft_server.jar nogui
서버 설정과 연결하기
Now it is time to configure and connect.
리눅스 운영체제용 설명서
This tutorial for how to set up a Minecraft server on Linux was designed for people who don't have a lot of experience with Linux. There is a more advanced tutorial in the forums. This tutorial was tested on Ubuntu 9.10 32-bit but should work with the descendants of Debian.
Downloading
Ensure you have the latest server application software. Look under Download the Minecraft Server above for instructions.x
Verifying Java version
Open the terminal from Applications > Utilities > Terminal. Enter java -version.
Make sure the first line says:
java version "1.6.0_xx"
Where xx is any number. Don't sweat it.
Installing Java
If you get java: command not found (which may be followed by more text) or if you do have another Java version than 1.6 then you need to install or update java.
The official Sun Java is recommended. Quite a few individuals have experienced issues with OpenJDK. If OpenJDK is installed, remove it before installing the official Sun Java.
Debian
To install Java, simply type this in terminal and press enter:
sudo apt-get install sun-java6-jre
Ubuntu
For Ubuntu 10.04 LTS and on, the sun-java6 packages have been dropped from the Multiverse section of the Ubuntu archive. You must add these sources:
- For Ubuntu 10.04 LTS (Lucid Lynx):
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
- For Ubuntu 10.10 (Maverick Meerkat):
sudo add-apt-repository "deb http://archive.canonical.com/ maverick partner"
- For Ubuntu 11.04 (Natty Narwhal):
Some distros have the command "add-apt-repository" removed. If this is the case, you will need to add the python properties by running the following command:
sudo apt-get install python-software-properties
Then you can proceed to add the source:
sudo add-apt-repository "deb http://archive.canonical.com/ubuntu natty partner"
- For Ubuntu 11.10 (Oneiric Ocelot):
sudo add-apt-repository ppa:ferramroberto/java
- Then install the packages:
sudo apt-get update
sudo apt-get install sun-java6-jre
sudo update-alternatives --config java
openSUSE
Use zypper in java-1_6_0-sun
Arch Linux
Open a terminal and run pacman -Syu openjdk6 as root.
Other Distros
Alternatively, you can visit Java's website directly to download the Java package for Linux. Most distros work with this (either 32 or 64-bit). Instructions for the installation of those different packages are given on the site.
If during installation, it asks for a password, enter your password. If you get asked "Is this OK [Y/N]" Enter Y and press enter if required. Java should now be installed.
Start the Minecraft server
Open the terminal again (Applications > Accessories > Terminal).
Enter the following commands:
cd 'minecraft_server' (change minecraft_server to the same name of the folder you extracted the server to)
java -Xms1024M -Xmx1024M -jar minecraft_server.jar nogui
Less than 1GB free RAM
If you have less than 1024MB RAM, the above line may cause problems with swapping and out of memory conditions, which makes the game hard to play. Measure your current free RAM:
free -m
It may look like this:
파일:Ram left.PNG
You are interested in the last number in the third line, 2163 in this case. Subtract some RAM as safety. On this computer, the server may use up to 1536 MB RAM. Now, replace the 1024 in the above example with the calculated number:
java -Xms1536M -Xmx1536M -jar minecraft_server.jar nogui
if Minecraft_Server.exe is being used you use:
java -Xms1536M -Xmx1536M -jar minecraft_server.exe nogui
Voila, it should run smoothly now.
Tip: If you want to spare more memory, you may set the -Xms parameter even lower, say:
java -Xms32M -Xmx512M -jar minecraft_server.jar nogui
The parameter controls how much memory is reserved on startup. Your server will start with 32MB RAM and whenever it needs more memory it will allocate some until it reaches the maximum of 512M. However, this will result in a little slowdown whenever the allocation is done.
Startup and maintenance script
Alternatively you can automate the startup of the Minecraft server.
Server startup script
Configure and connect
Now it is time to configure and connect.
맥 운영체제용 설명서
Setting a server up in Mac OS X is "more involved" than in Windows because Notch has not provided an executable. For a full video tutorial click here. Keep in mind that the server won't run correctly on OSX 10.4 and may crash your machine.
Downloading
Ensure you have the latest server application software. Look under "Download the Minecraft Server" above for instructions.
Installing Java
Mac OS X already comes with its own version of Java that is updated automatically via Software Update (Apple menu > Software Update).
Setting up the Minecraft Server
Ensure you have followed the download step before proceeding.
Create a folder, if you haven't already, and put minecraft_server.jar into it. For example, create a folder on the Desktop named minecraft_server and drag the jar file into it.
Open TextEdit, set the format to plain text (Format > Make Plain Text), copy and paste in the following code, and save the file as "start.command" in the same folder as minecraft_server.jar.
#!/bin/bash cd "$(dirname "$0")" exec java -Xmx1G -Xms1G -jar minecraft_server.jar
This will give the server enough RAM to run. The amount of RAM can be changed by editing the 1G to something else, such as 2G for 2 GB.
Open Terminal (in /Applications/Utilities/Terminal). Type in chmod a+x , with a space after it, then drag and drop the start.command file into the terminal window, then press enter. (This gives run permission to the script.)
Double-click the start.command file to start the server.
Run as a daemon
Alternatively you can automate the startup of the Minecraft server.
Create a Mac OS X startup daemon
Configure and connect
Now it is time to configure and connect.
Configuring the Minecraft Server
- Configure the server by editing the server.properties (Use this link to see how it works). Windows may not recognize it, so tell it to open with any text editor (such as Notepad or Notepad++). The server should run fine from the default values.
- Add your username to the admin.txt and/or ops.txt (newer versions may not have an admin.txt file). Admin.txt allows you to execute server commands.
op privileges allows you to destroy/place blocks. Add the name exactly as it is. From the server gui, you can type "op <name>" and it will automatically update the ops.txt file.
Connect to the Minecraft Server
- To test the server, if you are playing on the machine you are hosting on, select the "Multiplayer" option in the game client (or browser client) and type in "localhost".
- For people connecting from the internet, they must connect using your external IP address. You must port forward for someone outside your network to connect to the server.
- Users within your network can connect with your internal IP address. You do not need to port forward for connections that are within your local network.
IP address notes
- Unless you set a static IP for the computer that is hosting the game, the internal IP address can change. This affects port forwarding rules, and can make them invalid. Each modem or router has a different way of setting a static IP address. You should refer to the manual for your device(s) or online documentation for further instruction.
- If you are having players connect to your external IP, your external IP can change if you do not have a static IP from your internet service provider. Use a tool such as http://mywanip.com/ to periodically check on the external IP address. Alternatively, you can look into a dns service that will allow you to have a name, rather than an IP address, that will remain the same. The name will point to your external IP address, regardless of whether or not it changes (the dns is updated when changes occur). An example of a free dns service is Dyndns.
Firewalling, NATs and external IP addresses
- You must open the TCP port (default is 25565) on the firewall
If the server in question is not reachable via a globally routable IP address, you will need to add appropriate address and/or port number translation rules to the gateway — usually your router has the global IP address.
- For help with address translation, opening the firewall and routing (these three make up what people call port mapping/forwarding), portforward.com is a good source. Select your router from that list, skip the ad that comes after selecting the device, and you will see instructions for setting up port forwarding. Alternatively, you can read the documentation supplied with your router, modem, or other ISP related hardware.
- Verify the port is open, and note your external IP by using a port checker tool, such as http://www.yougetsignal.com/tools/open-ports/. The default port you should test is 25565, unless you specified something else. Have the Minecraft server running when you test the port.
- You can obtain your external IP address from http://www.yougetsignal.com/what-is-my-ip-address/.
Local Network Dedicated Servers
A common problem for server administrators is the inability to connect to your own server via another machine on your local network. A typical scenario for this is that you have a Classic server running on a dedicated machine, and you have your own machine which you play on. They're both connected to the same router/switch, and have internal IP's with the octets '192.168.x.x'. Normally, connecting via the URL generated for your server will result in an error message claiming that the server is offline.
To correct this, you must add a function to the end of your URL, bookmarks, or whatever else you connect by. The function is: ?override=true
Example: http://www.minecraft.net/classic/play/4c3bebb1a01816acbe31c5ece1570da5?override=true
Previously, (before the 1.8 beta and website update) this was &override=true. This caused much confusion since the change was not announced by Mojang, and wasn't announced on the website applet pages either. Before the update, connecting to your own URL via the website resulted in red text under the applet window saying "If you can't connect, try this link instead." The link returned the same thing, with the &override=true affixed to the end.
Note: This situation does not affect Beta servers, and you should be able to connect via an internal or external IP.
Setting Up a VPN (Hamachi)
An easy way to set up a server between you and your friends is to set up a VPN (virtual private network). A free software utility that can be used to set this up is Hamachi by LogMeIn.
Advantage of doing this saves you configuring ports on your router and if you have a dynamic IP address using Hamachi will provide you with a static IP.
- Install software on you and your friend's computers https://secure.logmein.com/products/hamachi2/ or https://secure.logmein.com/US/labs/?wt.ac=73-516-440 for Linux (32-bit and 64-bit .deb and .rpm packages are available, you can install it on Gentoo by emerging "net-misc/logmein-hamachi")
- One person sign up for admin via logmein website
- Create new network
- Pass these details onto every person concerned and get them to login
- One person set up a server.
- Everyone else connect via their Hamachi ip address and use port number 25565 (default)
Reporting problems in the forum
Before you can ask for help in the forums make sure that your problems is not listed in the Common Problems
If your problem is not listed you can create a new thread asking for help in the Server Administration Make sure to include as much information as possible:
- Operating system
- What you were trying to do
- What you did so far
- Any errors you encountered
- Screenshots of the problem (if possible)
다른 튜토리얼
아래의 링크는 모두 마인크래프트 서버를 구축하는 방법에 대한 튜토리얼이다..
- Full video tutorial for setting up Minecraft server on Mac OSX, including port forwarding
- Another Mac OSX and port forwarding tutorial
- Alternate Mac OSX video (updated for 1.7)
- Linux tutorial for more advanced users
- Windows tutorial with focus on how to forward a port
- Guide to setting up an alpha server using Virtualbox.
- How to install a Minecraft Server on Debian (German)
- How to Install Minecraft Server on CentOS