How to disable server console?

Discussion in 'Bukkit Help' started by Volte6, Oct 19, 2011.

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

    Volte6

    I used to be able to run minecraft in the background like so (Linux):

    Code:
    nohup java -Xincgc -Xmx1G -jar minecraft-server.jar &
    But now when I do this, it just spits out ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>" endlessly, filling up the nohup file. It also eats up CPU like nobody's business.

    Can anyone suggest a simple solution to this? I think it is looking for an input and constantly spitting out that prompt caret.
     
  2. Offline

    ImminentFate

    in your batch file, try replacing java with javaw and delete where it has PAUSE
     
  3. Offline

    Zaros

    I run a Ubuntu server, where I have the 'java -Xincgc -Xmx1G -jar minecraft-server.jar' in a sh file and I nohup the sh.
     
  4. Offline

    TheFatherMind

    Bump!
    I also have this problem on my linux server. I would love to know a good resolve for it. I suspect the ">" is some part of the code trying to put a prompt up and not having a console to do it in. Perhaps a bug?
     
  5. Offline

    iPhysX

    Code:
    @echo off
    java -Xincgc -Xmx1G -jar minecraft-server.jar nogui
     
Thread Status:
Not open for further replies.

Share This Page