minecraft
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
minecraft [2019/05/06 16:46] – jnilsson | minecraft [2019/05/14 16:30] (current) – justip6 | ||
---|---|---|---|
Line 3: | Line 3: | ||
* **IP Address**: **128.195.133.148** | * **IP Address**: **128.195.133.148** | ||
- | * **User accounts**: | + | * **User accounts**: local user " |
- | * **Local group**: " | + | * **Local group**: |
===== Important directories on the server ===== | ===== Important directories on the server ===== | ||
Line 23: | Line 23: | ||
* '' | * '' | ||
* '' | * '' | ||
+ | |||
+ | |||
===== Important screen commands ===== | ===== Important screen commands ===== | ||
When the start-mc.sh script starts a minecraft instance, it runs it in a screen so you can connect to the server console later to check it or to give it the " | When the start-mc.sh script starts a minecraft instance, it runs it in a screen so you can connect to the server console later to check it or to give it the " | ||
+ | |||
+ | Send server to background without shutting down the server | ||
+ | * Simply exiting the terminal window or putty session | ||
+ | * '' | ||
screen names will be of the format "'' | screen names will be of the format "'' | ||
Line 33: | Line 39: | ||
* '' | * '' | ||
* '' | * '' | ||
+ | |||
+ | |||
+ | ===== Setup the template directory ===== | ||
+ | |||
+ | The directory ''/ | ||
+ | |||
+ | * Edit the file ''/ | ||
+ | * Upload the world directory (in the current template, the " | ||
+ | * Make sure there is a '' | ||
+ | * ensure there is a spigot.jar file or valid symlink | ||
+ | |||
+ | |||
+ | |||
===== Spigot ===== | ===== Spigot ===== | ||
Line 41: | Line 60: | ||
You need to re-build spigot.jar each time there is a minecraft client update. As of this writing, minecraft is on version 1.13.2, but version 1.14 is in pre-release and my Java Edition client updated to 1.14. You will need to make sure that the correct version of the spigot.jar file is in your minecraft server directory. | You need to re-build spigot.jar each time there is a minecraft client update. As of this writing, minecraft is on version 1.13.2, but version 1.14 is in pre-release and my Java Edition client updated to 1.14. You will need to make sure that the correct version of the spigot.jar file is in your minecraft server directory. | ||
- | === Building | + | === Rebuilding |
You can build spigot using a simple script on the server:< | You can build spigot using a simple script on the server:< | ||
spigot-build.sh [version] | spigot-build.sh [version] | ||
Line 50: | Line 69: | ||
You can run "'' | You can run "'' | ||
- | === spigot-< | + | === Output: |
- | The result of this script is a file called '' | + | The result of this script is a file called '' |
- | == Old versions of spigot.jar == | + | * **NOTE**: the '' |
- | Old versions of spigot.jar | + | |
- | === spigot.jar symlink | + | == Old versions of spigot |
+ | Old versions of the file spigot-< | ||
- | The minecraft template directory and each specific instance under the named < | + | === Update spigot.jar symlink === |
+ | |||
+ | The minecraft template directory and each specific instance under the named < | ||
+ | |||
+ | For example, you might have a spigot-1.13.2.jar file and a spigot-1.14.jar file, but whichever one spigot.jar points to is the one that will be loaded:< | ||
# change directory to the template directory (where you want to copy the new spigot-version.jar file to) | # change directory to the template directory (where you want to copy the new spigot-version.jar file to) | ||
cd / | cd / | ||
Line 65: | Line 88: | ||
# remove an existing spigot.jar symlink, if there is one | # remove an existing spigot.jar symlink, if there is one | ||
rm spigot.jar | rm spigot.jar | ||
- | # create a new symlink | + | # create a new symlink |
ln -s spigot-1.13.2.jar spigot.jar | ln -s spigot-1.13.2.jar spigot.jar | ||
</ | </ | ||
+ | |||
+ | |||
===== start-mc.sh script ===== | ===== start-mc.sh script ===== | ||
- | FINISH ME :) | + | This script is used to start new minecraft spigot server instances on either a random port or a specific port specified as a command-line argument. When complete, it sets up a '' |
+ | |||
+ | === Port range === | ||
+ | |||
+ | The port range 25570 to 25599 is hard coded into the script as the valid port range to use for running minecraft spigot servers. These ports are opened in the system firewall to allow incoming connections. If a different port range is required, then the script must be updated and the system firewall must be updated to match. | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ==== How to run start-mc.sh ==== | ||
+ | The script '' | ||
+ | |||
+ | === To start on a new random port === | ||
+ | Simply run this command to start a new minecraft instance on a random port within the valid port range. It will print details about which port is used and how to connect to the minecraft server console. | ||
+ | < | ||
+ | |||
+ | === To start on a specific port === | ||
+ | If you know which port you want to use, you can specify it on the command line. Keep in mind, it must be a valid port in the range defined above. For example, if I want to start a new instance on port 25570, I would use this command: | ||
+ | < | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ===== FAQ: How to manage minecraft instances ===== | ||
+ | |||
+ | === How to see currently running instances === | ||
+ | To see which instances are currently running, use screen:< | ||
+ | |||
+ | To see which instances exist, even if they are not running, check the contents of the directory ''/ | ||
+ | < | ||
+ | |||
+ | === How to re-connect to the minecraft server === | ||
+ | |||
+ | If a minecraft instance is already running as shown by '' | ||
+ | < | ||
+ | |||
+ | === How to disconnect from minecraft server screen without stopping it === | ||
+ | |||
+ | You can safely close your PuTTY or Terminal session, and minecraft will continue to run. Or you can disconnect from the screen and return to your command prompt using '' | ||
+ | |||
+ | === How to stop an instance === | ||
+ | |||
+ | You will need to stop the minecraft instance when you are done using it. First connect to the screen session '' | ||
+ | screen -dr mc-25570 | ||
+ | stop | ||
+ | </ | ||
+ | |||
+ | === How to re-start an instance === | ||
+ | |||
+ | If you have stopped a minecraft instance but would like to re-start it, you can do so by running the " | ||
+ | cd / | ||
+ | ./ | ||
+ | </ | ||
+ | This will re-create the screen named " | ||
+ | |||
+ | === Where are the world files? === | ||
+ | |||
+ | You can see all the existing worlds in the directory ''/ | ||
+ | |||
+ | === What to do with old world directories? | ||
+ | |||
+ | You will need to clean up the world directories when you are done with them. This will involve stopping the minecraft instance and them moving the corresponding world directory to some other location. As long as the world directory exists in ''/ | ||
+ | |||
+ | I recommend archiving the world directory somewhere for your future use. The home directory of the user " | ||
+ | |||
+ | I also recommend renaming the world directory when you archive it, so that you can more easily identify it later. | ||
+ | |||
+ | For example, if I am archiving the world 25570: | ||
+ | < | ||
+ | mv / | ||
+ | </ | ||
+ | |||
+ | === If you accidentally type '' | ||
+ | Screen will tell you at the bottom of the terminal: [Press Space or Return to end.] | ||
+ | |||
+ | Do so, and when the terminal clears, type exit |
minecraft.1557161216.txt.gz · Last modified: 2019/05/06 16:46 by jnilsson