- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Messages on screen from syslog file
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-23-2007 05:17 AM
08-23-2007 05:17 AM
Messages on screen from syslog file
When I start a telnet o secure shell sesion, I receive a lot of messages coming from syslog file. ¿How can i stop this messages on my screen?.
Any help is appreciated. Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2007 08:14 AM
08-23-2007 08:14 AM
Re: Messages on screen from syslog file
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2007 08:45 AM
08-23-2007 08:45 AM
Re: Messages on screen from syslog file
Best Regards.!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2007 09:06 AM
08-23-2007 09:06 AM
Re: Messages on screen from syslog file
It is possible to re-route console output to any terminal device.
check the syslog configuration file (syslog.conf or syslogd.conf).
Check /etc/inttab for strange entries against a system that does not do this.
This is a bit of a detective novel now, but the system has been altered to send console output to a non-standard location. Probably.
If you are logging in to a device that is capable of being a remote console, it may be a problem with the main console causing this.
insf -e might clean up the device files by re-creating them.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2007 10:20 AM
08-23-2007 10:20 AM
Re: Messages on screen from syslog file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2007 02:04 PM
08-23-2007 02:04 PM
Re: Messages on screen from syslog file
Correct. The standard /etc/syslog.conf file only send emergency messages to every logged in user. The relevant entries are:
*.alert /dev/console
*.alert root
*.emerg *
which means that alert messages are sent to the console and wherever root has logged in. All emerg messages are sent to every user on the system. Now if some root user decided to be cute, the following entry:
*.* *
would jam every logged in user with debug messages -- a poor joke. If you want the orioginal syslog.conf, just copy it from /usr/newconfig/etc/syslog.conf to /etc/syslog.conf. The restart syslogd like this:
kill -HUP $(cat /var/run/syslog.pid)
Things will return to normal. Then ask the root user(s) why they changed this file.
Bill Hassell, sysadmin