envmond(8) System Manager's Manual envmond(8)NAME
envmond - Environmental Monitoring daemon
SYNOPSIS
/usr/sbin/envmond
DESCRIPTION
Environmental Monitoring provides a means of detecting system threshold conditions, that if exceeded, could result in a loss of data or
damage to the system itself. Using the envmond daemon, thresholds levels can be checked and corrective action can ensue before any damage
occurs.
The envmond daemon performs the following: Queries the system for exceeded threshold levels. Broadcasts a message to users warning of high
threshold conditions or fan failure, and suggests corrective action. Sends a message to users when a high temperature condition has been
resolved. Notifies all users that an orderly shutdown is to be initiated if recovery is not possible.
To enable Environmental Monitoring, the envmond daemon must be started during the system boot, but after the eSNMP and Server System MIB
agents have started. Before starting Environmental Monitoring, a system check is performed. If the system hardware does not support Envi-
ronmental Monitoring, the envmond daemon and Server System MIB are not started.
You can customize, start, and stop the envmond daemon using the envconfig utility. For more information, see the envconfig reference page.
FILES
A database that contains the values of the Environmental Monitoring variables.
SEE ALSO
Commands: envconfig(8)envmond(8)
Check Out this Related Man Page
SESD(8) BSD System Manager's Manual SESD(8)NAME
sesd -- monitor SCSI Environmental Services Devices
SYNOPSIS
sesd [-d] [-t poll-interval] device [device ...]
DESCRIPTION
sesd monitors SCSI Environmental Services (or SAF-TE) devices for changes in state and logs such changes changes to the system error logger
(see syslogd(8)). At least one device must be specified. When no other options are supplied, sesd detaches and becomes a daemon, by default
waking up every 30 seconds to poll each device for a change in state.
The following options may be used:
-d Instead of detaching and becoming a daemon, stay attached to the controlling terminal and log changes there as well as via the system
logger.
-p poll-interval
Change the interval of polling from the default 30 seconds to the number of seconds specified.
The user may then use getencstat(8) to get more detailed information about the state of the over enclosure device or objects within the
enclosure device.
FILES
/dev/sesN SCSI Environmental Services Devices
SEE ALSO ses(4), getencstat(8), setencstat(8), setobjstat(8), syslogd(8)BUGS
This is something of a toy, but it is better than nothing.
BSD February 21, 2000 BSD
Hi all !
Yesterday I defined an environmental variable PATH, but today when I restarted machine, I could not see that it was stored any place.
Is there any file where I could save the settings ?
I have quite a few env.variables defined, so I need a smarter way to define.
regards
D (5 Replies)
helllo!
I work in Department of Civil Aviation.Our SSR Radar use AlphaServer 800
with unix os.Now, sever can't startup completely.Its error messages are...
Enviromental Monitoring System can't start.
kdaemon progam not running.
network name and login name don't match.
I can enter login and... (5 Replies)
I am looking for a commercial tool that will give me -UNIX Monitoring performance solution+ reports on CCV format. (as perfmon on windows machines).
The tool must have following counters per PROCESS:
Page Faults/sec
Virtual Bytes
% Processor Time
Handles count
Threads count... (19 Replies)
#!/bin/bash
# Disk Space Monitoring for more than 95 %
# and Sending Alerts by Mail
if ;
then
`df -k |awk '$5 > 95 {print $1 " ----------- " $5}' |mailx -s "More than 95% disk usage in DEV" email@test.com';
else
exit 0
fi
I get the... (8 Replies)
I hope this is the correct forum - apologies to all if I am mistaken.
We are fairly sure someone has got access to the root password on one of our machines and is 'playing silly b*****rs' with it.
Due to local politics we can't easily get the password changed and we need to gather some info... (15 Replies)
Hi So, here is a million doller question. Being a Unix and Linux Admin we all use cront jobs to automate our tasks. But what if we need to monitor the cronjob itself. Oh!!! boy that can be a pain.
Few Techniques:
1. Redirect the output of the cronjob to a log file.:p
2. Using MAILTO option... (4 Replies)
Hello All,
We have a v245 that powered itself off for no reason. Searching around we discovered there is a bug were a temp error is being reported but doesnt actually exist, SUN released an EPIC update, the README is shown below but even after upgrading the ALOM to the latest v1.6.10 we do not... (8 Replies)
Guy's
AIX Monitoring Tool - under preparing .....
I'm working to make and prepare tool to monitor AIX system and my idea it's based on the following outputs
I want command to give me shout outpous about the following ...
CPU load
Memory load
Used load
Number of... (5 Replies)
Hi,
I am hunting for a low cost Monitoring & Reporting Tool for the SUN Environment.
I have all and all SUN Environment with LDOMs, Zones.
The monitoring Tool
1. Hardware failure.
2. Disk space and failure.
3. LDOMS,Zones.
4. CPU,Memory Utilization.
5. ping,URL Monitors
6. Send... (4 Replies)
It's the old thread "Disk Space Monitoring Script", modified for UNIX
This is the new code:
df -k | awk ' { if ( int($4) > 90)
{subject = $1 " More than 90% disk usage. Used: " $4
email = "email@test.com"
print subject
cmd = "mailx -s \"" subject "\" " email
cmd | getline... (4 Replies)
Hi ,
I am planning for the interview . I am having one question here , I worked on unix and shellscripting for 2 years
Done-
Ø Coding and testing of Server Monitoring ShellScripts
Ø Deployment on UNIX production environment
I have written so many shellscripts for monitoring... (5 Replies)
I am on SCO UNIX, I need to write a script to monitor root file system. For some reason it's not working for me.
#!/bin/sh
df -B / | awk '{ print $5 " " $1 }' | while read output;
do
echo $output
if ; then
echo "Running out of space \ HOSTNAME"
# mail -s "Alert: Almost out of... (8 Replies)
Hello,
I hope someone can hep with this. I use a skript to send multiline Data to a Monitoring system. Bu I'm not able to use linebreaks or escape sequences.
The skript is simple like that:
#!/bin/bash
var="Erste Zeile \n zweite Zeile \n Dritter Teil"
zabbix_sender -c... (17 Replies)
Have a question about doing some performance monitoring - how to approach it.
This is on RHEL 7.4
We are moving a rather large application to new hardware in the future. I would like to find a way to compared performance on the new hardware at different stages and at different times.
I'm... (4 Replies)