- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- linux servecies
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-10-2005 07:12 PM
тАО01-10-2005 07:12 PM
linux servecies
i have a radius service run on my redhat9 linux server i want something to check if the service is run if it is not running start it a gain,i want a script or other thing found in linux if there is.
BR,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-10-2005 08:53 PM
тАО01-10-2005 08:53 PM
Re: linux servecies
The Service Monitoring Daemon (http://www.kernel.org/software/mon/) will
satisfy your requirements. It can monitor service status , and issue alert or perform script when service down or any status you have been defined.
NiCK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-10-2005 08:58 PM
тАО01-10-2005 08:58 PM
Re: linux servecies
thanks for reply but the link does not open ,an i want to ask how does this tool can notify me about the services if it is down.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-10-2005 09:02 PM
тАО01-10-2005 09:02 PM
Re: linux servecies
easy configure Service Monitoring Daemon
For example:
Monitor apache service
edit file mon.cf
cfbasedir = /etc/mon
alertdir = /usr/lib/mon/alert.d
mondir = /usr/lib/mon/mon.d
statedir = /usr/lib/mon/state.d
logdir = /usr/lib/mon/log.d
dtlogfile = /usr/lib/mon/log.d/dt.log
maxprocs = 20
histlength = 100
randstart = 60s
dtlogging = yes
authtype = getpwnam
hostgroup servers 10.1.1.1 10.1.1.2
hostgroup www 10.1.1.1
watch www
service http
interval 1m
monitor http.monitor
period wd {Sun-Sat}
alert apacherestart.alert
alert mail.alert song@heming.org
edit file apacherestart.alert
#!/bin/sh
/etc/init.d/apache2 restart
Perform script apacherestart.alert and send mail to song@heming.org ,If http service down .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-10-2005 09:09 PM
тАО01-10-2005 09:09 PM
Re: linux servecies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-10-2005 09:11 PM
тАО01-10-2005 09:11 PM
Re: linux servecies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-11-2005 03:22 AM
тАО01-11-2005 03:22 AM
Re: linux servecies
Mon is a very good choice to solve your problem.
There's a script monitor for radius ( http://ftp.kernel.org/pub/software/admin/mon/contrib/monitors/radius/ ) that you can use with little efort.
Mon's site is http://www.kernel.org/software/mon/
regards,
xyko
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-11-2005 01:15 PM
тАО01-11-2005 01:15 PM
Re: linux servecies
Please open following URL
http://www.kernel.org/software/mon/
The file mon.cf will be created after mon package install.
NiCK