1. Welcome to LilyPad. Download the project, explore the forums, and create your own LilyPad network.


    If you use the software and enjoy it or have a question, or would like to contribute to the future of the software directly or through resources, please sign up and join our little community.

Solved Using LilyPad on a mac

Discussion in 'Support' started by mattjtv, May 26, 2013.

  1. mattjtv

    mattjtv New Member

    So, I have a mac, my servers are hosted by MCProHosting, and BungeeCord does not really fit my needs, so I am going to LilyPad. I was following the AllInOne tutorial video, but it does not work on my mac. I need to use terminal to start the Jar in an SSD hard drive. And hopefully you could give some advice for some cheap and powerful VPSs, just powerful enough to run my LilyPad Proxy server.
  2. Coelho

    Coelho Software Engineer Staff Member Administrator Maintainer

    The guide should clearly demonstrate on how to setup LilyPad on the Windows, Mac, and Linux platforms. Can you elaborate on what you're having troubles with?
  3. mattjtv

    mattjtv New Member

    I just have trouble starting it up with Terminal
  4. Coelho

    Coelho Software Engineer Staff Member Administrator Maintainer

    It would be the exact way you start up a CraftBukkit server, just with the LilyPad jar instead of the CraftBukkit jar :)
  5. Matt

    Matt Forum Moderator & Contributor Staff Member Moderator Contributor

    Well, I am also i Mac user and change the start command to

    Code (text):
    #!/bin/bash
    cd "$( dirname "$0" )"
    java -server -Xmx2G -jar ./Server-Standalone-AllInOne.jar
    That works for me :)
  6. mattjtv

    mattjtv New Member

    How do I get permission for the file? I did this before, but don't remember the terminal command
  7. Matt

    Matt Forum Moderator & Contributor Staff Member Moderator Contributor

    You get a error that you dont have permissions to open the file?
  8. Coelho

    Coelho Software Engineer Staff Member Administrator Maintainer

    Try using chmod +x <filename> or chmod 777 <filename>.
  9. Matt

    Matt Forum Moderator & Contributor Staff Member Moderator Contributor

    Or if the bukkit start command works, copy that file and paste it into the Proxy folder and change the command to:

    Code (text):
    #!/bin/bash
    cd "$( dirname "$0" )"
    java -server -Xmx2G -jar ./Server-Standalone-AllInOne.jar
  10. mattjtv

    mattjtv New Member

    Ok, thanks!
  11. Matt

    Matt Forum Moderator & Contributor Staff Member Moderator Contributor

    It works?
  12. mattjtv

    mattjtv New Member

    It works!
  13. Matt

    Matt Forum Moderator & Contributor Staff Member Moderator Contributor

Share This Page