- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Is dmesg read "/var/adm/syslogsyslog.log"?
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
07-07-2002 05:14 PM
07-07-2002 05:14 PM
Is dmesg read "/var/adm/syslogsyslog.log"?
file: table is full
file: table is full
file: table is full
file: table is full
file: table is full
file: table is full
file: table is full
file: table is full
file: table is full
file: table is full
file: table is full
file: table is full
file: table is full
I vi the file /var/adm/syslogsyslog.log
also find similar information.
What should I do ,to increase nfile parameter ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2002 05:36 PM
07-07-2002 05:36 PM
Re: Is dmesg read "/var/adm/syslogsyslog.log"?
this document gives you an overwiev of kernel parameters and related ones.
If you need to change nfile this doc will tell you you'll also need to double check:
nrpoc maxusers npty nstrpty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2002 05:47 PM
07-07-2002 05:47 PM
Re: Is dmesg read "/var/adm/syslogsyslog.log"?
First, it is important for you to verify whether this is normal (i.e. due to a normal increase of resource consumption such as more user accesses) or abnormal (i.e. an errant program or process such as one in an endless recursive loop).
To verify that, use lsof downloadable at:
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.61/
It will show you all the current open files on your system. nfiles is the kernel parameter identifying the limit on the number of opened files in the system. From your lsof output, check if any process(es) are opening up too many files unnecessarily.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2002 06:02 PM
07-07-2002 06:02 PM
Re: Is dmesg read "/var/adm/syslogsyslog.log"?
If there are entries there as well it means your system is constantly running out of kernel resources and in which case you should plan on making the necessary changes to your system kernel.
I suggest you use 'sam' to this work unless you are confident of doing this at the command line level. If you have formulas that make up these values, 'sam' is the best way.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2002 06:06 PM
07-07-2002 06:06 PM
Re: Is dmesg read "/var/adm/syslogsyslog.log"?
after you fix the problem , just check that no new message not come into the syslog.
dmesg will not clear then message untill reboot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2002 02:27 AM
07-08-2002 02:27 AM
Re: Is dmesg read "/var/adm/syslogsyslog.log"?
the following sentences are from dmesg man page.
---------------------------
dmesg looks in a system buffer for recently printed diagnostic messages and prints them on the standard output.
The messages are those printed by the system when unusual events occur (such as when system tables overflow or the system crashes).
---------------------------
so dmesg doesn't look into /var/adm/syslog/syslog.log. it only takes recent alerts/errors from buffer. once reboot dmesg will not display the same messages. but u can find those in syslog.log.
through SAM u can increse the nfile, but before doing so ensure that it is because u have fallen short nfile. because sometimes it may be due to any process fallen in loop and generating large number of forks. use lsof to identify such files.
regds
ravi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2002 01:36 PM
07-08-2002 01:36 PM
Re: Is dmesg read "/var/adm/syslogsyslog.log"?
as far as I remember: the kernel messages are not automatically written to syslog.log, but you can have cron execute
dmesg - >> /var/adm/syslog/syslog.log
(or any other filename)
every now and then to add new messages to the file.
dmesg reads the FIFO kernel message buffer which has limited size and is used in case of kernel messages which cannot be sent to any responsible process or things like panic's etc.
Regards
uli
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2002 01:48 PM
07-08-2002 01:48 PM
Re: Is dmesg read "/var/adm/syslogsyslog.log"?
You may also like to look at :
http://docs.hp.com/hpux/onlinedocs/os/KCparams.OverviewAll.html
Manoj Srivastava