Advertisement
Advertisement
| 06.06.2008 at 07:20AM PDT, ID: 23463787 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: |
#!/bin/bash
# Services Restarter - Automatically restart tomcat if it dies
/bin/netstat -ln | /bin/grep ":8080 " | /usr/bin/wc -l | /bin/awk '{if ($1 == 0) system("/sbin/service tomcat6 start") }'
# Service Restarter - automatically restart postrgres if it dies
postgres=`/bin/netstat -an | /bin/grep -i listen | /bin/grep ^tcp | /bin/grep 5432`
if [ "$postgres" == "" ]; then
service postgresql start
fi
|