- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Daemon scopeux not running
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
11-27-2008 09:13 AM
11-27-2008 09:13 AM
I am new to HPUX environment and curious about knowing for what the scopeux is responsible. In my server I am observing the situation where server is not responding to any ssh or telnet connection but it is pingable. All the oracle jobs got killed in that case. The ex admin here has written a scripts by which it give me alert of Daemon scopeux not running in that situation. Can anyone tell me more about this daemon and its neccessity for system function.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2008 09:39 AM
11-27-2008 09:39 AM
Re: Daemon scopeux not running
It is OVPA Data Collector.To collect the data this should be running.
Plz check for the script and restart the OV agent.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2008 09:39 AM
11-27-2008 09:39 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2008 09:44 AM
11-29-2008 09:44 AM
Re: Daemon scopeux not running
mwa start all
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2008 08:48 PM
11-29-2008 08:48 PM
Re: Daemon scopeux not running
you can see the status with the following command
<<<<
/opt/perf/bin/mwa status
<<<<
/opt/perf/bin/mwa stop
<<<<<
/opt/perf/bin/mwa start
if that is no the correct path you can find this command and please use the flags to get information.
I hope this could help you
LCJC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2008 09:14 PM
11-29-2008 09:14 PM
Re: Daemon scopeux not running
>>>Daemon scopeux not running in that situation. Can anyone tell me more about this daemon and its neccessity for system function.<<<
Trr:- has explained to about "scopeux"
now we need start investigate "why scopeux" wasn't running ..?
could be couple of reasons
In this case you should check from the logs any process couldn't register with "ttd"
most common reason "ttd" couldn't register with rpcbind because rpcbind wasn't running
SOLUTION:
***********
# ps -ef |grep rpc
root 725 1 0 Jul 28 ? 0:01 /usr/sbin/rpcbind
root 767 1 0 Jul 28 ? 0:00 /usr/sbin/rpc.lockd
root 761 1 0 Jul 28 ? 0:00 /usr/sbin/rpc.statd
root 1154 1 0 Jul 28 ? 12:05 /opt/dce/sbin/rpcd
root 1646 1 0 Jul 28 ? 0:00 /usr/sbin/rpc.mountd
root 4568 3369 1 18:00:43 ttyp2 0:00 grep rpc
# kill -9 725 1154 (.....to permanently kill the Process ID for "rpcbind" and "rpcd" daemons)
# /sbin/rc2.d/S590Rpcd start (.....to restart the "rpcd" daemon)
# /usr/sbin/rpcbind (.....to restart the "rpcbind" daemon)
# ps -ef |grep rpc (.....both daemons should be showing the current time)
# mwa stop
# ttd -k
# cat /dev/null >logtran
# cat /dev/null >logappl
# cat /dev/null >logdev
# cat /dev/null >logglob
# cat /dev/null >logindx
# cat /dev/null >logproc
# mwa start
# mwa status (.....wait for few minutes before checking the status)
Thanks,
Johnson