HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- hpux SMS notifications
Operating System - HP-UX
1830898
Members
3034
Online
110017
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
05-25-2008 08:12 PM
05-25-2008 08:12 PM
hpux SMS notifications
dear hpux guru,
I want to send notifications of sys log error to a mobile phone from hpux. What's the best way of doing this? We are using HPUX 11.23
Thanks in advance,
I want to send notifications of sys log error to a mobile phone from hpux. What's the best way of doing this? We are using HPUX 11.23
Thanks in advance,
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2008 08:47 PM
05-25-2008 08:47 PM
Re: hpux SMS notifications
you can use syslog-ng to send such notification.
a warrior never quits
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2008 12:41 AM
05-26-2008 12:41 AM
Re: hpux SMS notifications
It depends on your mobile phone vendor.
Not all vendors have SMS gateways to allow sending and email from a phone.
Then there's your internal policies to consider. Are you allowed to send data from a production system to an email phone?
If security is an issue then you have to start looking at products...such as TelAlert. Which allow you to purchase and use hardware to directly send a message to the phone.
These products can also verify delivery of the message.
If verifying delivery of the message AND security is not an issue.
Then simply find out the email address for the phone from your Vendor.
Then
mailx -s "subject" addressofphone@vendor.com
is the simplest form.
Of course you can use sendmail and any other email software out there.
For mailx thought you can send the body of the message as well by
Send content of file
-------------------------
cat file.name | mailx -s "subject" addressofphone@vendor.com
Manually send from command prompt
------------------------------------
echo "this i my message" | mailx -s "subject" addressofphone@vendor.com
From a script
-------------------------
_MESSAGE="my message"
_DEST="addressofphone@vendor.com"
_SUBJECT="a subject"
echo ${_MESSAGE} | mailx -s "${_SUBJECT}" ${_DEST}
Then you can create your own function in the script and simply change the _MESSAGE and _SUBJECT variables to suit then call your function with the parameters.
Cheers
Not all vendors have SMS gateways to allow sending and email from a phone.
Then there's your internal policies to consider. Are you allowed to send data from a production system to an email phone?
If security is an issue then you have to start looking at products...such as TelAlert. Which allow you to purchase and use hardware to directly send a message to the phone.
These products can also verify delivery of the message.
If verifying delivery of the message AND security is not an issue.
Then simply find out the email address for the phone from your Vendor.
Then
mailx -s "subject" addressofphone@vendor.com
is the simplest form.
Of course you can use sendmail and any other email software out there.
For mailx thought you can send the body of the message as well by
Send content of file
-------------------------
cat file.name | mailx -s "subject" addressofphone@vendor.com
Manually send from command prompt
------------------------------------
echo "this i my message" | mailx -s "subject" addressofphone@vendor.com
From a script
-------------------------
_MESSAGE="my message"
_DEST="addressofphone@vendor.com"
_SUBJECT="a subject"
echo ${_MESSAGE} | mailx -s "${_SUBJECT}" ${_DEST}
Then you can create your own function in the script and simply change the _MESSAGE and _SUBJECT variables to suit then call your function with the parameters.
Cheers
The Devil is in the detail.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2008 12:42 AM
05-26-2008 12:42 AM
Re: hpux SMS notifications
To save you time here's a link to a website with the SMTP email settings for various vendors
http://www.notepage.net/smtp.htm
http://www.notepage.net/smtp.htm
The Devil is in the detail.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP