赞
踩
服务器查看日志:
ssh工具:putty (免费)secureCRT(收费)
工具连接服务器,四要素:ip地址、端口、账号、密码
新建连接,登录
输入Linux命令查看日志,需要知道日志路径
一般用tail cat
tail -n 行数 日志文件 适用场景:发现bug后需要用日志排查问题
tail -f 10 日志文件 持续查看文件最后的10行,及时查看显示的最新的日志 适用场景:边测试边查看日志
Linux查看日志:
命令:tail cat tac head echo
tail
tail -n 10 test.log 查询日志尾部最后10行的日志
tail -fn 1000 test.log 循环实时查询最后1000行记录
grep查找文件里符合条件的字符串 tail -fn 1000 test.log | grep ‘字符串’
cat
$cat file 显示整个文件
$cat > file 创建新文件
$cat file1 file2 > file 将几个文件合并成一个文件
$cat -n textfile1 >> textfile2 将textfile1追加到2中
$cat : > textfile2 清除文件内容
sed
- /var/log/message 系统启动后的信息和错误日志,是Red Hat Linux中最常用的日志之一
- /var/log/secure 与安全相关的日志信息
- /var/log/maillog 与邮件相关的日志信息
- /var/log/cron 与定时任务相关的日志信息
- /var/log/spooler 与UUCP和news设备相关的日志信息
- /var/log/boot.log 守护进程启动和停止相关的日志消息
- /var/log/wtmp 该日志文件永久记录每个用户登录、注销及系统的启动、停机的事件
-
-
- history // 所有的历史记录
- history | grep XXX // 历史记录中包含某些指令的记录
- history | more // 分页查看记录
- history -c // 清空所有的历史记录
- !! 重复执行上一个命令
- 查询出来记录后选中 : !323
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。