Skip to content

colasama/openshift-craftbukkit-quickstart

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

openshift-craftbukkit-quickstart

A quickstart Minecraft (Craftbukkit) server that will automatically download latest craftbukkit development build and start it.

Create the Openshift DIY Application

  1. Create a DIY application using this git repo as source code:

    $ rhc app-create craftbukkit diy --from-code=git://github.com/colasama/openshift-craftbukkit-quickstart.git
  2. Create a port-forward from your local machine to your remote server:

    $ rhc port-forward craftbukkit
    Checking available ports ... done
    Forwarding ports ...
    
    To connect to a service running on OpenShift, use the Local address
    
    Service Local                OpenShift
    ------- --------------- ---- ---------
    java    127.0.0.1:25565  =>  *:25565
    
    Press CTRL-C to terminate port forwarding
  3. The server will be accessible from minecraft using Direct Connect on 127.0.0.1:25565

Setting Administrative Player (Op)

You will need at least one player to act as the administrator. In order to do that, you must add them to the ops.txt file.

  1. SSH to the application:

    $ rhc ssh
  2. Go to the $OPENSHIFT_DATA_DIR directory:

    $ cd $OPENSHIFT_DATA_DIR
  3. Add the minecraft user names to the ops.txt file. I use nano, but you can use vi if you wish.

    $ nano
    $ cat ops.txt
    syeary
  4. stop and start the gear. I have found restart does not work very well.

    $ gear stop
    Stopping gear...
    Stopping DIY cartridge
    $ gear start
    Starting gear...
    Starting DIY cartridge
    + cd /var/lib/openshift/52bc4398e0b8cded36000038/app-root/data/
    + nohup java -jar craftbukkit-dev.jar -h 127.8.212.1 --noconsole

Reference

The OpenShift diy cartridge documentation can be found at:

https://github.com/openshift/origin-server/tree/master/cartridges/openshift-origin-cartridge-diy/README.md

About

A Openshift quickstart Minecraft (Craftbukkit) server that will automatically download craftbukkit and start it.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%