nohup "command" & doesn't work with bukkit

Discussion in 'Bukkit Help' started by Kaosvf, Apr 25, 2011.

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

    Kaosvf

    Hi all,
    with the original file server I use this command to run minecraft server with Nohup:
    Code:
    nohup java -Xms32M -Xmx512M -jar minecraft_server.jar nogui &
    and works fine, but with Bukkit it doesn't work, I use this:
    Code:
    nohup java -Xms32M -Xmx512M -jar craftbukkit.jar nogui &
    when I press "Ctrl+C" in the terminal I receive:
    Code:
    [1]+  Stopped                 nohup java -Xms32M -Xmx512M -jar craftbukkit.jar nogui
    
    and the server go offline, can you help me?

    OS: CentOS 5.5 32bit
    Built version: #720
     
  2. Offline

    Andre_9796

    Code:
     java -Xincgc -Xmx1G -jar craftbukkit.jar nogui
    Maybe
     
  3. Offline

    Plague

    nohup will not work with jline I think
    either use "screen" for background or add "-Djline.terminal=jline.UnsupportedTerminal" to the command line (before -jar)
     
    Kaosvf likes this.
  4. Offline

    Kaosvf

    thx Plague! your second method works.
     
Thread Status:
Not open for further replies.

Share This Page