OS X Minecraft server setup

From munkjensen.net/wiki

Preface.

This page will describe how i run my Minecraft servers. All scripts i use will soon be available at my BitBucket repo. I just need to finish up the last few details before releasing my first version ;-)

Some of my inspiration was found at electricmonk.nl and minecraft.gamepedia.com.

The guide to YAMS.

User with limited privileges.

This way of creating a new user for your Minecraft Server IS complicated... but necessary if you want to run your Minecraft Server as secure as possible.
The login to GUI, makes it possible to run scheduled tasks using OS X launchd / launchctl <-- bug ??

  1. Follow the guide here like this, until you reach "append Groups/_minecraft GroupMembership _minecraft"
  2. Execute the dscl command  passwd /Users/_minecraft "YourTemporaryPassword"
  3. Continue following the guide, but ONLY until you reach "You might want something like this to prevent the user from showing up in the login dropdown:".
  4. Log out of OS X
  5. Log in as "_minecraft", using "YourTemporaryPassword" from step 2. Skip everything related to the first userlogin on the GUI.
  6. Log out.
  7. Log in as your normal user.
  8. Continue the user creation from "You might want something like this to prevent the user from showing up in the login dropdown:"
  9. STOP completely when you reach "Creating the user home". The rest is covered here after :-)


Finish up by deleting the following obsolete files and folders.

  1. cd ../_minecraft/
  2. sudo rm -R Desktop Documents Downloads Movies Music Pictures

YAMS...

Action Terminal command
Change to the new user : sudo su - _minecraft
Download the sourcecode like this : curl -kLOs https://bitbucket.org/fmjensen/yams
unzip the scripts : unzip yams-<version>.zip
Change to the directory containing the scripts : cd yams-<version>
"Update" your server : ./admin_update_server
READ the output from the script you just ran, and ACT upon the information ;-)


About the YAMS scripts and files.

This part contains a description of all files in the zip file you downloaded.

admin_accept_eula

This script

admin_chk_version

This script

admin_ejectramdisk

This script

admin_launch_on_ramdisk

This script

admin_quit_read_command-fifo

This script

admin_read_command-fifo

This script

admin_stop_on_ramdisk

This script will stop the server gracefully if the following conditions are met:

  • Server is running on RAM disk

admin_update_server

This script can update the server if the following requirements are met:

  • Server must not be running.
  • RAM disk must be ejected. See admin_eject_ramdisk

admin_wipe_everything

This script

=== backup_exclude_list

This file

backup_ramdisk

This script

cmd_list

This script

cmd_raw

This script

cmd_say

This script

cmd_showhelp

This script

cmd_whitelist-add

This script

cmd_whitelist-delete

This script

cmd_whitelist-list

This script

cmd_xp2player

This script

=== net.minecraft.ramdisk.server.backup

This file

=== server-icon.png

This file

=== server.properties

This file

Personalize your server.

TBD