Alert: Network Status Monitor daemon (rpcstat) is not running


 
Thread Tools Search this Thread
Operating Systems AIX Alert: Network Status Monitor daemon (rpcstat) is not running
# 1  
Old 07-02-2013
Wrench Alert: Network Status Monitor daemon (rpcstat) is not running

Hi

I am currently testing SCOM2012 on my AIX systems for monitoring. I tested it on 3 systems and immediately i got the following errors:

Code:
Alert: Network Status Monitor daemon (rpcstat) is not running
Source: AIX 7.1
Path: (left blank)
Last modified by: (left blank)
Last modified time: (left blank)
description: The Network Status Monitor daemon on server (removed system name) is not running.

Is this related to rpc.ststd?
Isn't rpc.statd and lockd related to NFS?
Do these deamons run when NFS is invoked?
Is it neccessary that this daemon is running at all times?

Thanks

Last edited by Scott; 07-02-2013 at 01:02 PM.. Reason: Removed formatting; added code tags
# 2  
Old 07-03-2013
Quote:
Originally Posted by jsabo40
Is this related to rpc.ststd?
When the error message of the application says so, who am i to disagree?

Quote:
Originally Posted by jsabo40
Isn't rpc.statd and lockd related to NFS?
Yes. "RPC" is short for "remote procedure call" and NFS builds upon this framework. For NFS to work "rpc.statd" (and a few other daemons as well) has to run.

Quote:
Originally Posted by jsabo40
Do these deamons run when NFS is invoked?
Generally, daemons run when they are started. If NFS is to work: yes, they should be started. If not, then not necessarily. ;-)

Quote:
Originally Posted by jsabo40
Is it neccessary that this daemon is running at all times?
No, only when it is needed: when NFS runs, it is needed indeed.

Counterquestion: what has NFS to do with "SCOM2012"? I don't know this software, but it is definitely not part of the NFS suite.

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
# 3  
Old 07-04-2013
@bakunin
Thank you for the reply bakunin.
Quote:
what has NFS to do with "SCOM2012"? I don't know this software, but it is definitely not part of the NFS suite.
I did not explain myself properly, appologies..... I installed SCOM2012, a microsoft product, to use as a monitoring tool for the AIX servers i have. In testing the installation, on the SCOM console it displays the following error.....

Quote:
Alert: Network Status Monitor daemon (rpcstat) is not running
Source: AIX 7.1
....
So to answer your question, SCOM has nothing to do with NFS in the fact that it is reporting an error with the rpc_statd daemon that is associated to teh NFS service. (whew!).

So my question is....
1 - Do i need to manually start this daemon or does it start automatically when NFS is invoked?
2 - If the answer to question 1 is 'No, i do not need to start the daemon manually' then is it an error I can ignore?

Thanks again
# 4  
Old 07-05-2013
Quote:
Originally Posted by jsabo40
1 - Do i need to manually start this daemon or does it start automatically when NFS is invoked?
RPC (remote procedure call) is a framework of functions. It is used for all sorts of things, one (in fact the main) being NFS. "rpc.statd" implements part if this framework, "lockd" implements another.

Both these daemons are started and stopped va the SRC (system resource controller) and will have to be started manually if you invoke "nfsd" manually. As the SRC knows groups which cann be managed together and "nfsd", "rpc.statd" and "lockd" are all members of the group "nfs" you can start/stop/restart the complete NFS service with:

Code:
startsrc -g nfs
stopsrc -g nfs
refresh -g nfs

and don't have to start these daemons one after the other.

Quote:
Originally Posted by jsabo40
2 - If the answer to question 1 is 'No, i do not need to start the daemon manually' then is it an error I can ignore?
Again: i do not know SCOM2012, i have no idea for what it might need "rpc.statd" (or NFS) and hence i can't say if you can ignore the message or not. Maybe you can, maybe not.

IMHO - but that is just my personal opinion - a monitoring product which relies on NFS and/or RPC is not worth it, as it poses an inherent security threat. I know that RPCing back and forth is common with M$$, but their products aren't exactly the epitome of security either. I'd look for a tool which relies on SNMP, which is a protocol designed for exactly this purpose. There is an awful lot of them, from very big (HP-OpenView, BMC Patrol) to small, lean and freeware.

I hope this helps.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. IP Networking

I would like to monitor network traffic for a computer on my network

My son does homework on a school laptop. I was thinking about setting up a gateway on my home network, so that I can monitor web traffic and know if he is doing his homework without standing over his shoulder. Ideally I would like to use the Raspberry Pi Model b that I already have. However, I... (15 Replies)
Discussion started by: gandolf989
15 Replies

2. Shell Programming and Scripting

File monitor and alert

whats is the best way to monitor file if it has not updated in last 24 hours. example /var/logmessages in linux , /var/adm/messaged in solaris and alert to email . find with mtime , perl file stat, anyone have any script examples of something better ? (3 Replies)
Discussion started by: nixguynj
3 Replies

3. UNIX for Dummies Questions & Answers

Cron Daemon and alert

I am not system admin on Unix or Linux server. I am Oracle DBA to work on these operating systems. On our Oracle Linux 5.8 box, it always pump up the alert message like this: Cron Daemon /bin/sh: /opt/oracle/product/middleware/agent11g/ccr/bin/emCCR: No such file or directory Please help... (2 Replies)
Discussion started by: duke0001
2 Replies

4. Solaris

Port status/Running daemon

Hi, I need to run an application (Hudson) listening to port 8080 on a remote Solaris server. I have managed to start that application and tried to access it with my browser from my local PC, but unsuccessfully. I need to find out what is blocking the access to that port (or any other). A... (9 Replies)
Discussion started by: JVerstry
9 Replies

5. Programming

Help in developing a Network Appliation to monitor pc in a network

I am developing a Network Appliation to monitor computers in a network. Specs are App monitors the current web page viewed in each system App also can shutdown the computer in the network App can show all process run by each computer in the network I am now confused how to start my... (2 Replies)
Discussion started by: valaparambil88
2 Replies

6. HP-UX

Monitor Service Status

Hey guys how do you determined the status of a certain service if its running or not aside from using ps. (0 Replies)
Discussion started by: sbn
0 Replies
Login or Register to Ask a Question