博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux syslogd
阅读量:6496 次
发布时间:2019-06-24

本文共 2526 字,大约阅读时间需要 8 分钟。

/********************************************************************************** *                            Linux syslogd * 说明: *     今天检查一下系统的系统日志,看一下系统是否正常,之前也都没有查看过这部分 * 日志。 *                               *                                              2017-2-22 深圳 南山平山村 曾剑锋 ********************************************************************************/一、参考文档:    1. 30.11. 使用 syslogd 记录远程主机的日志        https://www.freebsd.org/doc/zh_CN/books/handbook/network-syslogd.html二、syslogd帮助:    # syslogd --help    BusyBox v1.25.1 (2017-01-16 18:39:57 CST) multi-call binary.    Usage: syslogd [OPTIONS]    System logging utility    (this version of syslogd ignores /etc/syslog.conf)            -n              Run in foreground            -R HOST[:PORT]  Log to HOST:PORT (default PORT:514)            -L              Log locally and via network (default is network only if -R)            -O FILE         Log to FILE (default: /var/log/messages, stdout if -)            -s SIZE         Max size (KB) before rotation (default:200KB, 0=off)            -b N            N rotated logs to keep (default:1, max=99, 0=purge)            -l N            Log only messages more urgent than prio N (1-8)            -S              Smaller output    # 三、/var/log/messages示例:    ...    Feb 21 00:39:34 aplex user.debug kernel: usb 2-1: usb auto-suspend    Feb 21 00:39:34 aplex user.info kernel: eth0: Freescale FEC PHY driver [Generic PHY] (mii_bus:phy_addr=1:01, irq=-1)    Feb 21 00:39:36 aplex user.debug kernel: hub 2-0:1.0: hub_suspend    Feb 21 00:39:36 aplex user.debug kernel: usb usb2: bus auto-suspend    Feb 21 00:39:36 aplex user.debug kernel: ehci_fsl_bus_suspend begins, Host 1    Feb 21 00:39:36 aplex user.debug kernel: fsl-ehci fsl-ehci.1: suspend root hub    Feb 21 00:39:36 aplex user.debug kernel: ehci_fsl_bus_suspend ends, Host 1    Feb 21 00:39:37 aplex user.info kernel: PHY: 1:01 - Link is Up - 100/Full    Feb 21 00:39:38 aplex auth.info sshd[1478]: Server listening on 0.0.0.0 port 22.    Feb 21 00:39:38 aplex daemon.err tftpd[1494]: cannot open IPv6 socket, disable IPv6: Address family not supported by protocol    Feb 21 00:39:38 aplex daemon.err tftpd[1494]: Cannot set nonblock flag on socket: Bad file descriptor    Feb 21 00:39:41 aplex daemon.info : starting pid 1641, tty '/dev/ttymxc0': '/sbin/getty -L  ttymxc0 115200 vt100 '    Feb 22 22:05:26 aplex auth.info sshd[6989]: Accepted password for root from 192.168.10.10 port 49136 ssh2    ...

 

转载于:https://www.cnblogs.com/zengjfgit/p/6430410.html

你可能感兴趣的文章
可以简易设置文字内边距的EdgeInsetsLabel
查看>>
[詹兴致矩阵论习题参考解答]习题1.3
查看>>
Android Fragment的使用
查看>>
mysql半同步复制实现
查看>>
沙朗javascript总结一下(一)---基础知识
查看>>
js深入研究之函数内的函数
查看>>
LeetCode:4_Median of Two Sorted Arrays | 求两个排序数组的中位数 | Hard
查看>>
uva-12657 - Boxes in a Line(双向链表)
查看>>
python之commands模块
查看>>
android应用开发--------------看RadioGroup源代码,写相似单选选项卡的集成控件(如底部导航,tab等等)...
查看>>
LeetCode - Binary Tree Level Order Traversal
查看>>
FTP协议完全详解
查看>>
iOS:实现图片的无限轮播
查看>>
【C语言天天练(十五)】字符串输入函数fgets、gets和scanf
查看>>
【环境配置】配置sdk
查看>>
accept()
查看>>
USB 2.0 Hub IP Core
查看>>
USB 2.0 OTG IP Core
查看>>
解读浮动闭合最佳方案:clearfix
查看>>
Charles使用
查看>>