访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux运维常用命令-linux服务器代维常用到的维护命令

时间:2019-08-11

常用dos命令大全及其用法_常用linux命令_linux常用命令

1.删除0字节文件

find -type f -size 0 -exec rm -rf {} ;

2.查看进程

按内存从大到小排列

ps -e -o “%C : %p : %z : %a”|sort -k5 -nr

3.按cpu利用率从大到小排列

ps -e -o “%C : %p : %z : %a”|sort -nr

4.打印说cache里的URL

for num in `sudo ipvsadm | grep http | grep route | awk '{print $6}'`。for num in `sudo ipvsadm | grep http | grep route | awk '{print $5}'`。 for i in `(w | grep pts | grep -v :0.0 | awk -f " " '{print $3}')` do date=`date +%y-%m-%d` pts=` w | grep $i | awk -f " " '{print $2}' `。

5.查看http的并发请求数及其TCP连接状态:

netstat -n |awk '/^tcp/ {print $nf}'|sort|uniq -c|sort -rn。netstat -anlp|grep 80|grep tcp|awk '{print $5}'|awk -f: '{print $1}'|sort|uniq -c|sort -nr|head -n20 | netstat -ant |awk '/:80/{split($5,ip,":")。zcat squid_access.log.tar.gz| awk '{print $10,$7}' |awk 'begin{fs="[ /]"}{trfc[$4]+=$1}end{for(domain in trfc){printf "%s\t%d\n",domain,trfc[domain]}}'。

6. sed -i ‘/Root/s/no/yes/’ /etc/ssh/sshd_config sed在这个文里Root的一行,匹配Root一行,将no替换成yes.

7.1.如何杀掉mysql进程:

ps aux |grep mysql |grep -v grep |awk ‘{print $2}’ |xargs kill -9 (从中了解到awk的用途)

killall -TERM mysqld

kill -9 `cat /usr/local/apache2/logs/httpd.pid` 试试查杀进程PID

常用dos命令大全及其用法_常用linux命令_linux常用命令

8.显示运行3级别开启的服务:

ls /etc/rc3.d/S* |cut -c 15- (从中了解到cut的用途,截取数据)

9.如何在编写SHELL显示多个信息,用EOF

cat << EOF

+————————————————————–————–+

| === Welcome to Sinesafe Tunoff services === |

+————————————————————–————–+

EOF

10. for 的巧用(如给mysql建软链接)

cd /usr/local/mysql/bin

for i in *

do ln /usr/local/mysql/bin/$i /usr/bin/$i

done

11. 取IP地址:

ifconfig eth0 |grep “inet addr:” |awk ‘{print $2}’|cut -c 6- 或者

 上一个教程:genzld的博客