- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- "-- MARK --" messages in syslog.log 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
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
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
тАО10-16-2000 07:57 AM
тАО10-16-2000 07:57 AM
I have a K box running on HP-UX 11.0.
I am getting following one liner in syslog.log file every now and then.
"Oct 16 11:42:30 nbcgen06 -- MARK --"
Why should i get it ? Is there any way to block this message to appear in syslog file, if it is non critical ?
Thanks in advance
Regards,
Jegi,
NBC
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2000 08:01 AM
тАО10-16-2000 08:01 AM
Re: "-- MARK --" messages in syslog.log file
this looks like your application (nbcgen06) uses the syslog(3C) or logger(1) functionality to write messages into syslog.log.
I haven't seen such message before.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2000 08:05 AM
тАО10-16-2000 08:05 AM
Re: "-- MARK --" messages in syslog.log file
It doesnt look like anything to worry about, just some 3rd party application writing an info message to syslog just so you know its alive.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2000 02:44 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-18-2000 09:47 AM
тАО10-18-2000 09:47 AM
Re: "-- MARK --" messages in syslog.log file
As Sean mentioned, I found a "mark.debug" entry in my syslog.conf file. I think i have to get rid of this. I assume I need to restart syslog daemon if I make any changes.
Is that right pals?
Thanks,
Jegi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-18-2000 09:49 AM
тАО10-18-2000 09:49 AM
Re: "-- MARK --" messages in syslog.log file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-18-2000 09:56 AM
тАО10-18-2000 09:56 AM
Re: "-- MARK --" messages in syslog.log file
To kill syslogd, do:
# kill `cat /var/run/syslog.pid`
To force syslogd to reread its configuration:
# kill -HUP `cat /var/run/syslog.pid`
...JRF...