• 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 Server restarter on background process

Tatuy1

Member
Joined
Mar 24, 2014
Messages
159
Solutions
1
Reaction score
13
Location
México
I need to close the terminal to work, so I have a problem with the server restarter (in server save).
I use the command
Code:
while true; do ./otserv; done
and then I use
Code:
ctrl + z
to stop de process. Finally with the
Code:
 disown -h %1
and the
Code:
bg 1
I can run it on background and it works perfectly, but it not open again at server save. I think the while true; do is not working. Can you help me?
 
Back
Top