Restarting a Crashed Process


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Restarting a Crashed Process
# 1  
Old 05-01-2005
Restarting a Crashed Process

Hello,
I host a couple of Call of Duty gameing servers. There are some hackers who love the crash them. When they crash them it simply causes a segmentaion fault and kills the PID. I was wondering it you could help me write a script to simply restart the program after it has been crashed. The program works as follows: If you want to start a server you simply type: "./cod_lnxded +exec p31.cfg &" It then creates a backgrounded PID. I have created a script to launch about 10 of these. Now all I want is a script to see if any of these crases and to restart them.

Thanks a million,
Robert
# 2  
Old 05-01-2005
use ps -ef | grep "procesname" | grep -v "grep"

if you do n't get any o/p ... start that process in the script.

put this in a loop which checks process status for certain time period.

or setup the cron job.


Before that ...

just have a thought about hackers to your system
# 3  
Old 05-01-2005
yeah...... It would be great if I knew how to do that.

I knew the method I just don't know how to shell script, heh.
# 4  
Old 05-02-2005
can you post your start script?
# 5  
Old 05-02-2005
#!/bin/bash

./cod_lnxded +exec sam.cfg &
./cod_lnxded +exec h20war.cfg &
./cod_lnxded +exec cypher.cfg &
./cod_lnxded +exec ryan.cfg &
./cod_lnxded +exec cell.cfg &
./cod_lnxded +exec alls.cfg &
./cod_lnxded +exec p31.cfg &
exit 0
# 6  
Old 05-02-2005
Why did you choose to exit your script? I probably would try something like this:

For each process
Check to see if a process is running based upon your script name
if no process is found
Submit the process in the background
Create a lock file containing the PID value
Determine an appropriate wait interval then poll each process based on the
value contained in the lock file. If the process is no longer running, restart it, otherwise check the next process.

Run the script from a crontab but make sure you only have 1 instance running at a time (again use a lock file for the main script).

Last edited by google; 05-02-2005 at 09:24 PM..
# 7  
Old 05-03-2005
you could also ...

1. count the # of processes running and do nothing if all 10 are there
2. if less than 10 processes, identify which ones are not running and restart them

... if you have the monitor script sleeping and checking every second, your downtime per process will be quiet short ...

however, you might want to fix that hacker issue as soon as possible as anything you can do to fix your process --- they can break ...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Process with S state(Interruptable) in RHEL and gives Advertise error after restarting/Killing the p

Hello, In our Production system one process is in S state(interruptible)and after killing and restarting the process gives 'advertise error'. This error goes after rebooting the Server. I have RHEL 5.9 (tikanga) OS in our server. We tried debugging the issue with the help of 'strace' command... (9 Replies)
Discussion started by: Rohits
9 Replies

2. Shell Programming and Scripting

Need help in restarting process

Hi friends, I have one unix command which is used to check the network status manually. followig is the command check_Network this command give follwoing status Network 1 is ok Network 2 is ok network 3 is ok network 4 is ok . . . . Network 10 is... (8 Replies)
Discussion started by: Nakul_sh
8 Replies

3. Solaris

System got crashed.

Hi Admins, In my local Vmware system i have installed solaris but while getting my root disk mirrored in svm I changed the vfstab entries and rebooted the server , the server got crashed, and now the root file systems and other filesystems are crashed. Please help me in recovering this. (2 Replies)
Discussion started by: Laxxi
2 Replies

4. UNIX for Dummies Questions & Answers

Restarting a process

Hi, How is it possible to restart only your process. I can get the process killed but I am not able to start it. For eg : i first did this ps -ef|grep _out --displays all the process with _out in the name then I killed kill -15 36044 -- process id. Now how can i start the same... (1 Reply)
Discussion started by: TH3M0Nk
1 Replies

5. Shell Programming and Scripting

Script for to kill the process Ids when restarting the unix server

Hi, I need a script to kill the process Ids for the user ABC. I prepared the following script after that while logging with user therough script i am not sure how to pass the user name and password.Can ou modify the script and help me out. #!/bin/bash for filesize in $(ls -ltr | grep... (4 Replies)
Discussion started by: victory
4 Replies

6. Red Hat

Process does not dump any core files when crashed even if coredumpsize is unlimited

Hello Im using redhat and try to debug my application , its crashes and in strace I also see it has problems , but I can't see any core dump I configured all the limit ( im using .cshrc ) and it looks like this : cputime unlimited filesize unlimited datasize unlimited... (8 Replies)
Discussion started by: umen
8 Replies

7. Linux

Find out process that crashed the server

Hi everybody, I want to find out all the processes that ran before a server crashed. Is that possible? I've looked in /var/log/messages and found out that the system was out of memory. A user probably wrote a script (in Perl or Python) that used up all available memory and crashed the... (11 Replies)
Discussion started by: z1dane
11 Replies

8. Linux

system getting crashed

Hello, Iam a running a apache webserver in CentOS and i get a heavy traffic about 2.5 lac pageviews daily and my db size is about 2GB. Now the problem is after serving some lacs of requests by apache....Both apache and mysql hangouts and the system gets hanged up...using all resources in the... (2 Replies)
Discussion started by: dheeraj4uuu
2 Replies

9. AIX

AIX Crashed..

My AIX 5.3 Machine Carshed Can any one tell some way to find out what went wrong.. I mean debug why it got creahed... (3 Replies)
Discussion started by: pbsrinivas
3 Replies

10. UNIX for Dummies Questions & Answers

old server crashed

Hello We had an old system designed in fortran that ran on a IBM RS6000 AIX 3.2 system. The person who designed is long gone. It was replaced with a completely different (non unix) system 6 years ago. We still used it for historical lookups of older information. Well yesterday it died. The... (5 Replies)
Discussion started by: billfaith
5 Replies
Login or Register to Ask a Question