Sponsored Content
Full Discussion: SCO 6.0 Freeze
Operating Systems SCO SCO 6.0 Freeze Post 302471241 by atish0 on Friday 12th of November 2010 10:16:43 AM
Old 11-12-2010
It is a Dell R710 server with Idrac feature, has a seperate NIC for the idrac access to the system console. and we have attached the keyboard and mouse to IBM RCM.

The last time system froze, the console was blank both via dell idrac as well as IBM RCM.

I viewed the /usr/adm/ syslog, rc2.log and messages and did not find any clue that can lead me to what caused the freezing.

where else should I look.

Thanks for all your help.
 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

PHP5 Script 'Freeze' before exiting

I recently upgraded a system from php 4.4.2 to php 5.2.1, and one of my scripts has started behaving very strangely. I've tried google but come up blank so far. Basically what the script does is select a large amount of data from a mysql (4.1.21) database, do some manipulation, the plots a graph... (4 Replies)
Discussion started by: Unbeliever
4 Replies

2. Linux

How to trace the module after system freeze?

Hi, I wrote a kernel module that did a virtual network protocol and library that provide interface for application use to interact with the kernel module by ioctl actions. insmod the module and unload the module, there will be no problem. But once I call the library with my example... (0 Replies)
Discussion started by: a2156z
0 Replies

3. SCO

Help on System Freeze in SCO

Hi, My SCO server freezes suddenly. I just want to know if there any tools / commands availble that can find which is causing the freeze? Any help on this would be greatly appreciated. Regards, Ravikumar R (4 Replies)
Discussion started by: rrb2009
4 Replies

4. AIX

Freeze user in one directory

Guy's I have user calld appuser home directory of this user is : /app/application when this user login , user will be direct under this directory /app/application I want to keep and freeze this user in his home directory to be able to access only his home directory and denied it... (2 Replies)
Discussion started by: Mr.AIX
2 Replies

5. Linux

grub2 startup freeze

I got a dual boot with grub2, but everytime I turn on the computer and the booter is loaded, I can't handle the menu, so I am forced to wait the countdown and choose the default option. I'd really like to know why! This is my grub.cfg, # # DO NOT EDIT THIS FILE # # It is automatically... (0 Replies)
Discussion started by: Luke Bonham
0 Replies

6. Debian

Debian on ia64 install - freeze

Hi I try to install debian 6.0.1 on hp rx2600. I boot from the CD i get first boot menu ( i can choose Install/Install(expert)/Rescue modes) after i choose one of above i see messages like : (..) Uncompressing linux..done. (...) Loading file /initrd.gz.. done (...) Linux Version... (2 Replies)
Discussion started by: chesti
2 Replies

7. Solaris

Solaris 11 install freeze

Hi, I tried to boot the Solaris 11 install DVD the other day and I can't get past the "SunOS" text banner on the clear/newscreen. It just hangs with a solid block cursor. I have a new computer and that might be the problem, but what I want is more verbosity maybe, some kind of detailed... (2 Replies)
Discussion started by: eax
2 Replies

8. Cybersecurity

Freeze system

hello is there any freeze software for Linux-redhat system to prevent any changes on /root (wish open topic on right forum) (3 Replies)
Discussion started by: nimafire
3 Replies
syslog(8)						      System Manager's Manual							 syslog(8)

Name
       syslog - log systems messages

Syntax
       /etc/syslog [ -mN ] [ -fname ] [ -d ]

Description
       The command reads a datagram socket and logs each line it reads into a set of files described by the configuration file The command config-
       ures when it starts up and whenever it receives a hangup signal.

       Each message is one line.  A message can contain a priority code, marked by a digit in angle braces at the beginning of the line.   Priori-
       ties are defined in < syslog.h >, as follows:

       LOG_ALERT    This  priority  should essentially never be used.  It applies only to messages that are so important that every user should be
		    aware of them, for example, a serious hardware failure.

       LOG_SALERT   Messages of this priority should be issued only when immediate attention is needed by a qualified system person, for  example,
		    when some valuable system resource disappears.  These messages are sent to a list of system people.

       LOG_EMERG    Emergency  messages  are  not  sent  to users, but represent major conditions.  An example might be hard disk failures.  These
		    could be logged in a separate file so that critical conditions could be easily scanned.

       LOG_ERR	    These messages represent error conditions, such as soft disk failures, etc.

       LOG_CRIT     Such messages contain critical information, but which can not be classed as errors, for example, `su' attempts.   Messages	of
		    this priority and higher are typically logged on the system console.

       LOG_WARNING  These messages are issued when an abnormal condition has been detected, but recovery can take place.

       LOG_NOTICE   These  messages  fall  into  the class of ``important information''; this class is informational but important enough that you
		    don't want to throw it away casually.  Messages without any priority assigned to them are typically mapped into this priority.

       LOG_INFO     These are information level messages.  These messages could be thrown away without problems, but should  be  included  if  you
		    want to keep a close watch on your system.

       LOG_DEBUG    These messages may be useful to log certain debugging information.	Normally this information is thrown away.

       It is expected that the kernel will not log anything below LOG_ERR priority.

       The  configuration  file is in two sections separated by a blank line.  The first section defines files that will log into.  Each line con-
       tains a single digit which defines the lowest priority (highest numbered priority) that this file will receive, an optional asterisk  which
       guarantees that something gets output at least every 20 minutes, and a pathname.  The second part of the file contains a list of users that
       will be informed on SALERT level messages.  For example, the following logs all messages of priority 5 or higher onto the  system  console,
       including timing marks every 20 minutes:
       5*/dev/console
       8/usr/spool/adm/syslog
       3/usr/adm/critical

       eric
       kridle
       kalash

       This  example  logs  all  messages  of priority 8 or higher into the file and all messages of priority 3 or higher into The users ``eric'',
       ``kridle'', and ``kalash'' will be informed on any subalert messages.

       The flags are:

       -m   Set the mark interval to N (default 20 minutes).

       -f   Specify an alternate configuration file.

       -d   Turn on debugging (if compiled in).

       To bring down, it should be sent a terminate signal.  It logs that it is going down and then waits approximately 30 seconds for	any  addi-
       tional messages to come in.

       There  are  some special messages that cause control functions.	``<*>N'' sets the default message priority to N.  ``<$>'' causes to recon-
       figure (equivalent to a hangup signal).	This can be used in a shell file run automatically early in the morning to truncate the log.

       The command creates the file if possible containing a single line with its process ID.  This can be used to kill or reconfigure

Restrictions
       LOG_ALERT and LOG_SUBALERT messages should only be allowed to privileged programs.

       Actually, can not deal with kernel error messages in the current implementation.

Files
       Configuration file

       Process id

See Also
       syslog(3)

																	 syslog(8)
All times are GMT -4. The time now is 04:12 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy