- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- call multiple cell phone numbers to alert overtemp...
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
Forums
Discussions
Discussions
Discussions
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
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
06-02-2003 02:22 PM
06-02-2003 02:22 PM
call multiple cell phone numbers to alert overtemp shutdown
Thank you in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 09:49 AM
06-03-2003 09:49 AM
Re: call multiple cell phone numbers to alert overtemp shutdown
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xbf42eea29889d611abdb0090277a778c,00.html
For example, if your pager accepts email, ie., skytel, then you can send and email from your server.
echo ALERT | mailx -s "TOO HOT" thing1@skytel.com thing2@skytel.com thing3@skytel.com
This logic in a script and execute.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 10:31 AM
06-03-2003 10:31 AM
Re: call multiple cell phone numbers to alert overtemp shutdown
ie-
cat list
joe.smith@work.com
jane.jones@work.com
pete.peterson@work.com
then in your script you could call it like this:
sendto=$(cat list)
alert | mailx -s "alert" $sendto
then you only need to modify the file "list"
as for calling a cell phone... i don't know how to do it... but you can send e-mails and pages this way.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 10:36 AM
06-03-2003 10:36 AM
Re: call multiple cell phone numbers to alert overtemp shutdown
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 10:41 AM
06-03-2003 10:41 AM
Re: call multiple cell phone numbers to alert overtemp shutdown
but even if you could call a cell phone... what then?
server's aren't exactly conversational... they don't even breathe heavy :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 11:41 AM
06-03-2003 11:41 AM
Re: call multiple cell phone numbers to alert overtemp shutdown
I think you would want text messaging to the mobile. If that is available on your mobiles, search the forum keywords "text messaging".
We had done this in the past until one person went overboard and ended up with $180.00 in text messaging one month.
Hang in there.
dl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 12:42 PM
06-03-2003 12:42 PM
Re: call multiple cell phone numbers to alert overtemp shutdown
HTH
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 01:24 PM
06-03-2003 01:24 PM
Re: call multiple cell phone numbers to alert overtemp shutdown
This is not a good design at all. If you have inadequate or unreliable air conditioning, you are risking total loss of all computers, disks, tapedrives, and network devices in case the above system doesn't work (cellphones out of range, support people out of town, blocked roads to the data center, etc). I would never rely on the sensors in a computer to provide overtemp protection...that's not the primary purpose of a computer.
Instead, I would look at a properly sized airconditioning system with several overtemp solutions including a high temp breaker that disconnects ALL power to the data center as a last resort. There are many designs for air conditiioning systems that handle multiple failures and while this may cost some money, it's not unusual that a data center with a dozen computers to run $1 million dollars to replace and cost $10-50,000 per day in down time until the replacement systems, disks, networking, etc is replaced and reloaded. Heat damage is cumulative and while newer HP computers may shut themselves off, the external disks and tapedrives don't have that luxury and may be damaged beyond repair or worse, be very unreliable.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2003 09:31 AM
06-04-2003 09:31 AM
Re: call multiple cell phone numbers to alert overtemp shutdown
For example, the modem dials the cell phone, and then repeats the string of digits "123123123123123..." long enough that the cell phone either picks up the call, or it goes into voicemail with the tone. Also, cell phones have Caller ID built in. The recipient may recognize the dialer from the number and realize that the modem is calling. This will be an indication to check the system.
This is just a precaution if the AC goes down. We already have a backup standalone AC unit in case the main one fails. This is just another step towards peace of mind if this problem does occur.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2003 05:47 AM
06-14-2003 05:47 AM
Re: call multiple cell phone numbers to alert overtemp shutdown
If you want to dial out then use 'uucp' and 'cu'. Add a similar entry in the Devices file, note the modem is tty6a1.
vi /etc/uucp/Devices
acu tty6a1 - 9600 hayes
Test from the command line.
# cu -h -l /dev/tty6a1 96123385555
# connected
# AT
# OK?
# ATE1
# OK?
Now cat your alerts out after 'connected'.