- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- cmclconfd and unknown source of syslog error
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-04-2003 02:02 PM
08-04-2003 02:02 PM
"cmclconfd[15878]: Unable to get local username
cmclconfd[15878]: Unable to initialize communication
inetd[781]: hacl-cfg/udp: Exit status 1
inetd[25675]: getpwnam: root: No such user"
The only command running at this time every morning is a script:"
. /apps/oracle/local/efector_env smi1
PROGLOC=${ORACLE_BASE}/local/dbr
export PROGLOC
/usr/bin/date >>${PROGLOC}/DBR.log
${ORACLE_HOME}/bin/sqlplus -s / @${PROGLOC}/DBR_Mail >>${PROGLOC}/DBR.log"
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 03:10 PM
08-04-2003 03:10 PM
SolutionIf yes to ServiceGuard then check all nodes for duplicate /etc/inetd files with similar entries like the following:
hacl-cfg dgram udp wait root /usr/lbin/cmclconfd cmclconfd -p
hacl-cfg stream tcp nowait root /usr/lbin/cmclconfd cmclconfd -c
hacl-probe stream tcp nowait
Chances are root is misconfigured on the node in question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 03:19 PM
08-04-2003 03:19 PM
Re: cmclconfd and unknown source of syslog error
If you do indeed have Service Guard, then make sure you have a cmclnodelist file in /etc/cmcluster & that it contains the following syntax
hostname1 root
hostname2 root
for all nodes in the cluster.
Also make sure the command or script you reference in your post is not trying to do any of the following commands if you don't have Service Guard - cmquerycl, cmviewcl, cmcheckconf or cmapplyconf.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 11:34 PM
08-04-2003 11:34 PM
Re: cmclconfd and unknown source of syslog error
inetd[25675]: getpwnam: root: No such user"
This indicates you are using NIS, and it has not been able to resolve the root user id.
If not, hten you ar using soe other method of "synchronizing" login_id/password. If you cannot resolve the root user, then the Sg daemons, such as cmclconfd (which use root) will fail.
Does this happen on just one node? or all the cluster nodes?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 04:23 AM
08-05-2003 04:23 AM
Re: cmclconfd and unknown source of syslog error
The reason why there is no /etc/passwd before 4am is that we rename /etc/passwd to /etc/passwd at 2100hrs ET each night to disable users from logging into the machine. I'm assuming that we'd get the "no user found" error message because
1. There's no passwd file and
2.the sqlplus -s command is referencing an OS user.
Sorry to trouble y'all, but your answers are helpful anyways.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 04:26 AM
08-05-2003 04:26 AM
Re: cmclconfd and unknown source of syslog error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 04:28 AM
08-05-2003 04:28 AM
Re: cmclconfd and unknown source of syslog error
NOLOGIN This parameter controls whether non-root login can be disabled by the /etc/nologin file.
NOLOGIN=0 Ignore the /etc/nologin file and do not exit if the /etc/nologin file exists.
NOLOGIN=1 Display the contents of the /etc/nologin file and exit if the /etc/nologin file exists.
Default value: NOLOGIN=0
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 04:29 AM
08-05-2003 04:29 AM
Re: cmclconfd and unknown source of syslog error
1) Ensure the file /etc/default/security contains NOLOGIN=1
2) Place a file called /etc/nologin on the system with whatever text you want to display to the users, such as "No logins allowed at this time."
Then when you wish to allow logins remove the /etc/nologin file. This can be easily scripted & you won't run into the above error & this has no effect on valid root logins.
HTH,
Jeff