Psyz Posted March 19, 2021 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 23 Reputation: 1 Joined: 09/28/12 Last Seen: November 16, 2024 Share Posted March 19, 2021 Can anyone introduce a guide on how to configure the shell to start again some of the services of rathena after a crash? Using Crontab or another system? I am grateful. PS: If possible inside the screen Quote Link to comment Share on other sites More sharing options...
0 Haruka Mayumi Posted March 19, 2021 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 485 Reputation: 271 Joined: 06/13/17 Last Seen: March 25 Share Posted March 19, 2021 #!/bin/bash run=1 if [ "$run" -eq 1 ]; then if [ $(ps | grep -e login-server | wc -l) -eq 0 ]; then # Login server down ./login-server & > /dev/null fi if [ $(ps | grep -e char-server | wc -l) -eq 0 ]; then # Char server down ./char-server & > /dev/null fi if [ $(ps | grep -e map-server | wc -l) -eq 0 ]; then # Map server down ./map-server & > /dev/null fi sleep 10 ./auto-restarter.sh & fi you can also cut each server in run it on screen. 1 Quote Link to comment Share on other sites More sharing options...
0 Psyz Posted March 19, 2021 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 23 Reputation: 1 Joined: 09/28/12 Last Seen: November 16, 2024 Author Share Posted March 19, 2021 4 hours ago, Haruka Mayumi said: #!/bin/bash run=1 if [ "$run" -eq 1 ]; then if [ $(ps | grep -e login-server | wc -l) -eq 0 ]; then # Login server down ./login-server & > /dev/null fi if [ $(ps | grep -e char-server | wc -l) -eq 0 ]; then # Char server down ./char-server & > /dev/null fi if [ $(ps | grep -e map-server | wc -l) -eq 0 ]; then # Map server down ./map-server & > /dev/null fi sleep 10 ./auto-restarter.sh & fi you can also cut each server in run it on screen. Perfect ! Thk !!! Quote Link to comment Share on other sites More sharing options...
0 Frost Diver Posted September 22, 2021 Group: Members Topic Count: 48 Topics Per Day: 0.02 Content Count: 188 Reputation: 7 Joined: 10/22/18 Last Seen: 6 hours ago Share Posted September 22, 2021 On 3/19/2021 at 10:48 PM, Haruka Mayumi said: #!/bin/bash run=1 if [ "$run" -eq 1 ]; then if [ $(ps | grep -e login-server | wc -l) -eq 0 ]; then # Login server down ./login-server & > /dev/null fi if [ $(ps | grep -e char-server | wc -l) -eq 0 ]; then # Char server down ./char-server & > /dev/null fi if [ $(ps | grep -e map-server | wc -l) -eq 0 ]; then # Map server down ./map-server & > /dev/null fi sleep 10 ./auto-restarter.sh & fi you can also cut each server in run it on screen. Hi, may i know how to use/run this script? Quote Link to comment Share on other sites More sharing options...
Question
Psyz
Can anyone introduce a guide on how to configure the shell to start again some of the services of rathena after a crash?
Using Crontab or another system?
I am grateful.
PS: If possible inside the screen
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.