- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Nothing going into syslog
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
06-08-2009 05:59 AM
06-08-2009 05:59 AM
We have two new rx3600 servers which have just been built by consultants but for some reason no messages are going into syslog. I've restarted syslogd but still nothing.
Any ideas?
Solved! Go to Solution.
- Tags:
- syslog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 06:05 AM
06-08-2009 06:05 AM
Re: Nothing going into syslog
Can you post the contents of /etc/syslog.conf?
thanks
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 06:10 AM
06-08-2009 06:10 AM
Re: Nothing going into syslog
How long has the syslogd been running? It is possible that nothing was generated. Force a syslog message by running "logger test".
Check if syslog is actually running and check its startup file in /etc/rc.config.d/syslog.
Check if /etc/syslog.conf is modified and they set the servers to log somewhere else or not log at all. Check if the consultants installed syslog-ng.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 06:15 AM
06-08-2009 06:15 AM
Re: Nothing going into syslog
Yes sorry I should have mentioned that each time I've restarted syslogd I've run logger to put a message through but it doesn't enter into the syslog.log. As for the contents of syslog.conf, see below:
# @(#)B.11.31_LR
#
# syslogd configuration file.
#
# See syslogd(1M) for information about the format of this file.
#
mail.debug /var/adm/syslog/mail.log
local5.info /var/adm/syslog/local5ftp.log
daemon.info /var/adm/syslog/daemon.log
auth.info /var/adm/syslog/auth.log
*.info;mail.none;local5.none;daemon.none;auth.info /var/adm/syslog/syslog.l
og
*.alert /dev/console
*.alert root
*.emerg *
user.alert @uklnet002
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 06:21 AM
06-08-2009 06:21 AM
SolutionThe '/etc/syslog.conf' file requires TAB characters as field seperators as described in the manpages for 'syslogd(1M)'.
Make sure you have TAB and not space characters. You can verify with:
# cat -et /etc/syslog.conf
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 06:24 AM
06-08-2009 06:24 AM
Re: Nothing going into syslog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 06:30 AM
06-08-2009 06:30 AM
Re: Nothing going into syslog
You were right, that last line did have spaces and I replaced them with a tab, restarted syslogd (by running kill -HUP on the process), then ran a logger command but still nothing in the syslog.log.
rgds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 06:38 AM
06-08-2009 06:38 AM
Re: Nothing going into syslog
I copied over a syslog.conf from the old server and suspect there were more spaces in the file on other lines as the old syslog.conf works fine.
Thanks everyone.