- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Unable to stop EMS in hpux 11.11 with /sbin/in...
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
08-09-2007 09:47 PM
08-09-2007 09:47 PM
I want to stop EMS in one hpux 11.11 server to unmount “/etc/opt/resmon/persistence”.
I am unable to stop the EMS by /sbin/init.d/ems stop command. Getting this error …
=> sudo /sbin/init.d/ems stop
This script does not stop the EMS Services
Do not run this script manually from the command line prompt.
EMS monitors may not behave as expected.
If you have performed this action already, execute the command
/usr/bin/rm -f /var/stm/data/tools/monitor/.system_shutdown_ems
You can ignore this message in /etc/rc.log and /etc/rc.log.old
Please suggest some other methods to stop EMS .
Thanks in advance
Prasanth
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2007 09:53 PM
08-09-2007 09:53 PM
Solutionhttp://www.informatik.uni-frankfurt.de/RBI2/hp-service/patches/s700_800/11.X/PHSS_28844.txt
and
http://docs.hp.com/en/B7609-90031/B7609-90031.pdf
Installed the necessary patches
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2007 09:57 PM
08-09-2007 09:57 PM
Re: Unable to stop EMS in hpux 11.11 with /sbin/init.d/ems stop
sudo probably won't work here.
You need root access or to have root grant restricted SAM access to your user id.
Then you should be able to use SAM to shut off EMS.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2007 10:02 PM
08-09-2007 10:02 PM
Re: Unable to stop EMS in hpux 11.11 with /sbin/init.d/ems stop
/sbin/init.d/diagnostic stop
You must be root of course.
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2007 10:11 PM
08-09-2007 10:11 PM
Re: Unable to stop EMS in hpux 11.11 with /sbin/init.d/ems stop
Those start up script such as /sbin/init.d/ it is advisable not to use assign sudo to execute it.
Further Sudo is an opensource tool, you may consider RBAC which is HP equivalent of Sudo
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=AccessControl
WK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2007 12:06 AM
08-10-2007 12:06 AM
Re: Unable to stop EMS in hpux 11.11 with /sbin/init.d/ems stop
its not still solved. This is the "action case" in /sbin/init.d/ems for stop option. As per my knowlegde , /sbin/init.d/ems stop will not stop the service.
=============================================
'stop')
print "This script does not stop the EMS Services"
if [ -d /var/stm/data/tools/monitor ]
then
print "Do not run this script manually from the command line prompt."
print "EMS monitors may not behave as expected."
print "If you have performed this action already, execute the command"
print "/usr/bin/rm -f /var/stm/data/tools/monitor/.system_shutdown_ems"
print "You can ignore this message in /etc/rc.log and /etc/rc.log.old"
/usr/bin/touch /var/stm/data/tools/monitor/.system_shutdown_ems
/usr/bin/chmod 444 /var/stm/data/tools/monitor/.system_shutdown_ems
fi
exitval=$SUCCESS # No-op
;;
=============================================
This script is unable to stop EMS eventhough i am giving the stop command from root user. So i want so other method to stop EMS.
Thanks in advance
Prasanth