33.9. Logging

简介:


		
log on
		
		

33.9.1. log http

			
Array(config)#log http squid novip nohost
			
			

Apache Log combined Format

			
Array(config)#log http combined novip nohost
			
			

33.9.2. show log config

Array(config)#show log config
Logging is on
Logging Facility: LOCAL0
Logging source port: 514
Logging level: info
Logging option level information is off
Logging option logid is off
Logging timestamp is on
log http squid
			

33.9.3. show log buff

			
show log buff backward
show log buff backward
			
			
			
Array(config)#show log buff forward
start of buffer
INFO    Jan 11 22:41:23 CLI: User "array" executed cmd "log on"
INFO    Jan 11 22:41:30 CLI: User "array" executed cmd "show log config"
INFO    Jan 11 22:43:00 CLI: User "array" executed cmd "show log buff backward"
INFO    Jan 11 22:43:15 CLI: User "array" executed cmd "show log buff backward"
INFO    Jan 11 22:43:27 CLI: User "array" executed cmd "show log buff backward"
			
			

33.9.4. log host

			
Array(config)#log facility LOCAL1
Array(config)#log host 172.16.0.9
			
			

linux syslogd

/etc/syslog.conf

local1.*          /var/log/array.log
			

/var/log/array.log

# cat /var/log/array.log
Jan 12 00:29:29 192.168.3.20 CLI: User "array" executed cmd "show run"
			

防止日志文件本修改,加入某些属性。

1:chattr 命令可以使某个文件属性改变
     chattr  +a /var/log/array.log   只允许追加,不允许减少。
     chattr  -a /var/log/array.log   去掉属性。
2:lsattr 命令查看chattr属性
# lsattr /var/log/array.log
-----a------- /var/log/array.log
			




原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
|
3月前
|
Java 编译器 Linux
使用Commons Logging22
使用Commons Logging22
25 3
|
4月前
|
数据库
You are not using binary logging
You are not using binary logging
22 0
|
7月前
|
关系型数据库 MySQL Unix
logging模块介绍
logging模块介绍
|
存储 Unix Python
logging模块
logging模块
49 0
|
Python
logging
logging模块是Python内置的标准模块,主要用于输出运行日志,可以设置输出日志的等级、日志保存路径、日志输出格式等。
104 0
Java:日志输出JDK Logging、commons-logging、log4j、SLF4J、Logback
Java:日志输出JDK Logging、commons-logging、log4j、SLF4J、Logback
159 0
|
监控 Java Apache
java日志commons-logging/log4j/slf4j/logBack需要知道的几件事
如果对于commons-loging、log4j、slf4j、LogBack等都已经非常清楚了,可以忽略本文。几次解决日志冲突问题时对这几个概念的简单总结,希望对这块基础没有理解透的同学能有所帮助,当然如果对这块有更深刻理解的同学,也贡献出自己的知识和见解。
1640 0
|
监控 Apache