1、查看实时日志
tail -f 日志文本名
2、查看实时日志指定关键字及高亮显示
// 如果不需要指定行数就删除-A3 tail -f 日志文本名 | grep '关键字' --color=auto -A3 -A3是关键字下3行
3、按照时间查询日志(sed )
// **注意:** 2020-03-28 11:39:08日期一定要在日志中有才能查出记录 sed -n '/2020-03-28 11:39:08/,/2020-03-28 11:41:59/p' service.out
4、按照时间查询日志(sed )并过滤关键字并高亮显示并过滤行
// **注意:** 2020-03-28 11:39:08日期一定要在日志中有才能查出记录 sed -n '/2020-03-28 11:39:08/,/2020-03-28 11:41:59/p' service.out | grep "关键字" --color=auto
5、查看少量日志或文本
//不需要过滤过滤关键字去除 | grep "关键字" --color=auto cat 文本 | grep "关键字" --color=auto
6、查看比较多量日志或文本
//不需要过滤过滤关键字去除 | grep "关键字" --color=auto less 文本 | grep "关键字" --color=auto
7、查看多量日志或文本
//不需要过滤过滤关键字去除 | grep "关键字" --color=auto more 文本 | grep "关键字" --color=auto
1、查看cpu
//查看cpu整体情况 cat /proc/cpuinfo // 查看cpu占用排行 top
2、某进程端口号
ps -ef | grep 进程名称 例子:ps -ef | grep java
1、查找文件
// 查找文件 find path -option [ -print ] [ -exec -ok command ] {} \; 例子 find /opt -name "*.java"
2、查看磁盘占用空间
// 查看磁盘占用确定问题 df -h
3、查看具体占用文件
//查看具体占用文件 cd 到root path 下 du -sh *
4、清理文件
//清理 **-rf 慎用** rm -rf 文件名
1、查看网络情况
ifconfig
2、查看是否连通某网络
ping www.baidu.com
3、查看端口号
#1.方法一 lsof -i:端口号 #2.方法二 netstat -apn|grep 端口号 #3.方法三 ps -au|grep 端口号
4、查看开通关闭防火墙
Centos 6.x版本 iptables 查看防火墙状态: [root@centos6 ~]# service iptables status iptables: Firewall is not running. 说明防火墙没有开启。 开启防火墙: [root@centos6 ~]# service iptables start 关闭防火墙: [root@centos6 ~]# service iptables stop Centos 7版本 firewall 背景:在CentOS上面安装了mysql、svn、tomcat等软件,发现访问不了,用telnet命令查看端口,发现都不通。 telnet IP 端口 操作系统环境:CentOS Linux release 7.0.1406(Core) 64位 CentOS7 默认使用firewalld防火墙,如果想换回iptables防火墙,可关闭firewalld并安装iptables。 1、关闭firewall: 停止firewall systemctl stop firewalld.service 禁止firewall开机启动 systemctl disable firewalld.service 查看默认防火墙状态(关闭后显示notrunning,开启后显示running) firewall-cmd --state 2.安装iptables-services yum install iptables-services 3.修改防火墙配置文件 vi /etc/sysconfig/iptables 默认的文件为: 在修改之前使用telnet命令查看端口是否开放。 1.启动telnet。控制面板-->程序和功能-->打开或关闭windows功能-->勾选Telnet的两个选项。 2.打开cmd窗口,输入telnet,如果端口关闭或者无法连接,则显示不能打开到主机的链接,链接失败;端口打开的情况下,链接成功,则进入telnet页面(全黑的),证明端口可用。 (1)telnet IP 端口。 (2)telnet 域名 端口。 如果成功连接会进入的界面 连接失败 添加端口80、8080、3306、3690端口: esc :wq! 退出保存修改。 注意:添加在端口22上面或者下面,不要放在最后,不然不起作用。 4.重启防火墙使配置生效 systemctl restart iptables.service 刚刚yum install iptables.service之后系统如果没有重启,iptables.service是找不到的,会报unit not fount。耽误时间的小坑! 设置防火墙开机启动: systemctl enable iptables.service
作者:上上迁
原文链接:https://blog.csdn.net/aa327056812/article/details/109636066#comments_14697978