[Open Beta][WEB/ADMIN] SpaceBukkit - Web Administration the awesome way

Discussion in 'Bukkit Tools' started by Antariano, Sep 13, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    PrinceCharger

    Wow. This is really awesome. Any idea when this will be out or there will be a public beta? I'm sick of Beastnode's control panel.
     
  2. Offline

    Jamy

    Refresh yo page ;)
     
  3. Offline

    Antariano

    Can't say anything about open beta because I had some personal issues that offthrew all our timelines.
    And the homepage.... well, I'm coding a better one, so I kinda abandoned the current one :p
     
    ZNickq likes this.
  4. Offline

    5tinger

    I've been watching this thread for a while. Cant wait for this. Will we be able to open and edit plugin config files? Most are the yml files but some plugins use txt files for certain things. so if it supports yml editing that would be sweet!
     
  5. Offline

    Jamy

    It supports all editing atm :p
    Let me get you a better screenshot for that :)
    EDIT: There you go ;)[​IMG]
     
  6. Offline

    5tinger

    wow! Keep up the good work and I'll keep watching for open beta. Thanks team!

    Oh I forgot to ask. will SpaceBukkit have the ability to load the worlds in a ram disk?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 14, 2016
  7. Offline

    Lolmewn

    If you put the world on a ramdisk, ye :)
     
  8. Offline

    5tinger

    I have found setting up ramdisk and running craftbukkit challenging. Every shell script I have seen to run craftbukkit in a ramdisk looks extremely bloated and not very clear or poorly commented. all I want it to do is place the world folder in a ramdisk, start the script and that's all.
     
  9. Why use a script that you don't like if you could do it yourself?
    It's pretty easy, just copy the worlddir into the Ramdisk and make a symlink to it, that's all.
     
  10. Offline

    Lolmewn

    One problem: Where is the ramdisk located ^^ (Linux of course, using Debian here)
     
  11. /dev/shm is usually already a Ramdisk, but you can create yourself one easily like this:
    Code:
    sudo mkdir /mnt/ramdisk
    sudo mount -t tmpfs none /mnt/ramdisk
     
  12. Offline

    Lolmewn

    Oright, thanks :)
     
  13. Offline

    5tinger

    I'm using CentOS 6. Thats all it takes? what about setting the size of the ramdisk? and loading the world folder into /mnt/ramdisk ? maybe i'm not understanding correclty.
     
  14. Offline

    NeatMonster

    Maybe you can use the WorldContainer setting of Bukkit.
     
  15. I am quite interested in this project and was wondering, is the scheduling part of the system done? And if so, any chance we could see some screenshots?
     
  16. Offline

    NeatMonster

  17. Offline

    Lolmewn

    *Looks at source
    *Finds class named MD5
    *Puts on Troll Face Mask
     
  18. Offline

    NeatMonster

  19. Offline

    bootscreen

    can anyone open the demosite?

    when i try to open the demo i get a site with database errors and this:
    Code:
    Welcome to SpaceBukkit's Closed Beta!
     
    Please do report any bug to our forums, located here: FORUMS
    Have fun!
    Login to SpaceBukkit
    You are not authorized to access that location.
    Invalid username or password, try again
    
     
  20. If you want to limit the size of the Ramdisk it would take some more commands, but I don't see why you would need to do that.
    To load the worlds into it you only copy them and make a symlink:
    Code:
    mv -R /path/to/world /mnt/shm/
    ln /mnt/shm/world /path/to/world
    I would suggest creatign a directory named "backup" where you put the worlds when shutting down minecraft or the server so you don't lose them. A cronjob would also be good so they are backed up if minecraft or your server crashes.
    Code:
    #on start:
    mv -R /path/to/backup/world /mnt/shm/
     
    #on stop:
    mv -R /mnt/shm/world /path/to/backup/
     
    #for cronjob:
    EDITOR=nano
    crontab -e
    #now add to the end:
    0,15,30,45 * * * * cp -R /mnt/shm/world /path/backup/
    You need to run everything as root of course.
    After that it should back the world up from the ramdisk every 15mn.

    The Demo is offline ATM, Jamy is fixing it!
     
  21. Offline

    Antariano

    Fixed already
     
  22. Offline

    Lolmewn

    Aswell as family problems I hope? :)
     
  23. Offline

    Antariano

    Nope :) but one must carry on
     
  24. Offline

    Aetherspawn

    @Antariano Is the log reader symlink based?
     
  25. Offline

    t-master

    There is a log reader?
    Where?
     
  26. Offline

    XtenD

    Can translate it to russian. If u need this :)
     
  27. Offline

    Tomaz

    i can do it for dutch,portuguese(portugal&brazil), and French.
    Antariano
     
  28. Offline

    Antariano

  29. Offline

    B3NW

  30. Offline

    ChuckBartowski

    Demo version still requires login? :confused:
     
Thread Status:
Not open for further replies.

Share This Page