Linux:日志管理
Posted rtczza
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux:日志管理相关的知识,希望对你有一定的参考价值。
常见日志的作用:
/etc/rsyslog.conf 配置文件:
日志等级:
等级名称 | 说明 |
debug | 一般的调试信息说明 |
info | 基本的通知信息 |
notice | 普通信息,但是有一定的重要性 |
warning | 警告信息,但是还不会影响到服务或系统的运行 |
err | 错误信息,一般达到err等级的信息已经可以影响到系统的运行了 |
crit | 临界状况的信息,比err等级还要严重 |
alert | 警告状态信息,比crit还要严重。必须立即采取行动 |
emerg | 疼痛等级信息,系统已经无法使用了 |
日志轮替:/etc/logrotate.conf 配置文件
[adams@localhost etc]$ cat /etc/logrotate.conf # see "man logrotate" for details # rotate log files weekly weekly # keep 4 weeks worth of backlogs rotate 4 # create new (empty) log files after rotating old ones create # use date as a suffix of the rotated file dateext # uncomment this if you want your log files compressed #compress # RPM packages drop log rotation information into this directory include /etc/logrotate.d # system-specific logs may be also be configured here. [adams@localhost etc]$
logrotate命令
以上是关于Linux:日志管理的主要内容,如果未能解决你的问题,请参考以下文章
我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情