Sponsored Content
Full Discussion: Intermitent System Reboot's
Special Forums Hardware Filesystems, Disks and Memory Intermitent System Reboot's Post 30614 by Cameron on Thursday 24th of October 2002 10:32:30 AM
Old 10-24-2002
Guys,

Found this in the /var/adm/syslog (must have been looking in on planet Mars the first time). The following is an extract of the syslog that is generated from a script that checks the log every evening at 23:55.
Code:
Oct 24 12:37:37 www3 lmail[27608]: Cannot open /usr/spool/mail/nobody: Operation would block
Oct 24 14:46:50 www3 lpd[381]: unknown printer: lf=/var/spool/lp/logs/output_log
Oct 24 14:46:57 www3 ifor_sld: PMDCT: Error accepting server side connection. (PM_THREAD_IPC_TIMEOUT) 
Oct 24 14:46:57 www3 ifor_sld: PMDCT: Error accepting server side connection. (PM_THREAD_IPC_TIMEOUT) 
Oct 24 14:46:57 www3 ifor_pmd: cleanup; terminating
Oct 24 14:46:57 www3 ifor_pmd: cleanup; terminating
Oct 24 14:46:57 www3 sco_cpd: cpd: pmd died
Oct 24 14:46:57 www3 Xsco[406]: Xsco: ERROR- Failed to initialize policy manager. (IFOR_PM_FATAL)
Oct 24 14:46:57 www3 Xsco[406]: Xsco: ERROR- Failed to initialize policy manager. (IFOR_PM_FATAL)
Oct 24 14:46:57 www3 ifor_pmd: terminated with status 100
Oct 24 14:46:57 www3 ifor_pmd: terminated with status 100
Oct 24 14:47:00 www3 ifor_pmd: ^M
         The Licensing Policy Manager Daemon (ifor_pmd) has terminated^M
         and been restarted.  This is a normal occurrence only when a^M
         license is removed with the License Manager utility.  If this is^M
         not the case, your system may have a problem which could lead to^M
         undesirable behavior.  Contact your SCO service provider for^M
         help if you suspect that there is a problem.^M 
Oct 24 16:34:25 www3 ftpd[15956]: #2 open of pid file failed: No such file or directory
Oct 24 16:40:01 www3 ftpd[18453]: #2 open of pid file failed: No such file or directory

What's this Licensing Policy Manager Daemon (ifor_pmd) ??
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Clearify what it means under 'WHAT' when hit the 'w'-command

I wonder how I shall read the result below, especially 'what' shown below. The result was shown when I entered 'w'. E.g what is TOP? What is gosh ( what does selmgr mean?)? login@ idle JCPU PCPU what 6:15am 7:04 39 39 TOP 6:34am 6:45 45 45 TOP 6:41am ... (1 Reply)
Discussion started by: Aelgen
1 Replies

2. UNIX for Dummies Questions & Answers

quoting echo 'it's friday'

echo 'it's friday' why appear the > (3 Replies)
Discussion started by: yls177
3 Replies

3. Windows & DOS: Issues & Discussions

My ATX System Doesn't power off

Hello! Will someone help me find a solution to my computer systems which as windows 98 and Windows 2000 professional running on it. After shutting down the system the system will prompt system shutdown but it will not power off the system( the system as an ATX power system) . Therefore it is as... (1 Reply)
Discussion started by: kayode
1 Replies

4. UNIX for Advanced & Expert Users

How to remove a file with a leading dash '-' in it's name?

Somehow someone created a file named '-ov' in the root directory. Given the name, the how was probably the result of some cpio command they bozo'ed. I've tried a number of different ways to get rid of it using * and ? wildcards, '\' escape patterns etc.. They all fail with " illegal option --... (3 Replies)
Discussion started by: GSalisbury
3 Replies

5. Shell Programming and Scripting

What are the differences between 'bash' and 'sh'

Hopefully this doesn't come off as too much of a "newbie" question or a flamebait. But I have recently begun working with a Sun Solaris box after having spent the past five years working with RedHat. From what i can tell, thing look fairly similar and the 'man' command is some help. But I've... (7 Replies)
Discussion started by: deckard
7 Replies

6. UNIX for Dummies Questions & Answers

System Reboot Dates

Hi, Can someone advise me how to find the last system rebooted date(s)? Thanx N Regards, Hush (2 Replies)
Discussion started by: hush
2 Replies

7. Solaris

system self reboot

dear all, I have 2 T2000 with solaris 10 and oracle 10g installed on it. these two servers are rebooted by itself. could anyone help me investigate the cause. the message log is attached thanx, (3 Replies)
Discussion started by: fsmadi
3 Replies

8. Solaris

System Reboot Log

Hello Everyone , I am a new member to this forum and came to know about this from so many of my friends . I face one issue last day when suddenly the system got rebooted ( But don,t know why ) . Can someone please help me in investigating this issue as to why the system got rebooted and who... (4 Replies)
Discussion started by: gera_sachin125
4 Replies

9. Solaris

system reboot procedure

Hi all, i want to know the procedure reboot the server through console if the system is completely down.Please help me if anybody knows this. I would really thanfull to all. regards Krishna Murthy (1 Reply)
Discussion started by: murthy76
1 Replies

10. UNIX for Advanced & Expert Users

Intermitent issue with passwordless login

Hi, I have two users login on my HPUX i.e user1 and user2. Inorder to switch from user1 to user2 without password I generated key pair using keygen command for user id user1 and copied the its public key to the .ssh/authorized_keys file of user2. ssh-keygen -b 2048 -t rsa This... (5 Replies)
Discussion started by: mohtashims
5 Replies
sched_getscheduler(3RT) 				    Realtime Library Functions					   sched_getscheduler(3RT)

NAME
sched_getscheduler - get scheduling policy SYNOPSIS
cc [ flag... ] file... -lrt [ library... ] #include <sched.h> int sched_getscheduler(pid_t pid); DESCRIPTION
The sched_getscheduler() function returns the scheduling policy of the process specified by pid. If the value of pid is negative, the behavior of the sched_getscheduler() function is unspecified. The values that can be returned by sched_getscheduler() are defined in the header <sched.h> and described on the sched_setscheduler(3RT) manual page. If a process specified by pid exists and if the calling process has permission, the scheduling policy will be returned for the process whose process ID is equal to pid. If pid is 0, the scheduling policy will be returned for the calling process. RETURN VALUES
Upon successful completion, the sched_getscheduler() function returns the scheduling policy of the specified process. If unsuccessful, the function returns -1 and sets errno to indicate the error. ERRORS
The sched_getscheduler() function will fail if: ENOSYS The sched_getscheduler() function is not supported by the system. EPERM The requesting process does not have permission to determine the scheduling policy of the specified process. ESRCH No process can be found corresponding to that specified by pid. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
librt(3LIB), sched.h(3HEAD), sched_getparam(3RT), sched_setparam(3RT), sched_setscheduler(3RT), attributes(5) NOTES
Solaris 2.6 was the first release to support libposix4/librt. Prior to this release, this function always returned -1 and set errno to ENOSYS. SunOS 5.10 5 Oct 2001 sched_getscheduler(3RT)
All times are GMT -4. The time now is 08:34 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy