Bukkit in the background

Discussion in 'Bukkit Help' started by 68x, Mar 4, 2011.

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

    68x

    I am wondering if it is possible to run bukkit in the back ground on linux without it sputing all the data into the console window I'm using. I tried these commands but to no avail (I cannot join my server).

    Here are the commands:
    Code:
    nohup ./run.sh
    sh run.sh &
    
     
  2. Offline

    mughi

    you can use screen
    that will let you reconnect to it later as well.

    simply enter screen at a terminal prompt
    then start the server as you normally would (with command spurting goodness)
    then you can close the terminal window

    to rejoin the session, open a terminal window and type screen -dr
     
  3. Offline

    Peacem4k3r

    or more simple:

    Code:
    screen ./run.sh
    You have to replace 'run.sh' with your server starter script.

    then you can use ctrl+a+d to detach from the server, then you can use the terminal for some other purpose. If you want the server output to appear again use:

    Code:
    screen -r
     
Thread Status:
Not open for further replies.

Share This Page