• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux - Check on running server

XtrmJosh

Member
Joined
Oct 6, 2010
Messages
189
Reaction score
17
Hi all,

Wondering if there is any method to "attach" to a running instance of TFS... For instance:

./run.sh start

See the loading~~~ text.
See logging in / out and error text

Exit putty, server continues to run.

Open putty, server continues to run.

Can't seem to find a way to see logging in / out and error text?

Any ideas?

Thanks
 
I'm not sure what you want but I guess you want your server to keep running when you logout from putty? I mean de-attach the server to the console?

nohup ./theforgottenserver
 
Depends on how you start your server.

Code:
# open a new "screen" for your server and name that screen "server":
screen -S server

# run your server:
./theforgottenserver

# leave the screen:
# press Ctrl+A, then press D
# (or just close Putty)

# to reconnect to your screen:
screen -dr screen
 
start your server by

screen -L ./theforgottenserver
to hide the screen of server and back to putty
Ctrl+A+D
to show back the screen of server
screen -r
 
Back
Top