让我们看一台高负载服务器的 top 结果: top 技巧:运行 top 时,按「1」打开 CPU 列表,按「shift+p」以 CPU 排序. 在本例中大家很容易发现 CPU 主要是被若干个 PHP 进程占用了,同时 PHP 进程占用的比较多的内存,不过系统内存尚有结余,SWAP 也不严重,这并不是问题主因. 不过在 CPU 列表中能看到 CPU 主要消耗在内核态「sy」,而不是用户态「us」,和我们的经验不符.Linux 操作系统有很多用来跟踪程序行为的工具,内核态的函数调用跟踪用「strac…
[20170705]理解linux su命令.txt --//我一般在维护时经常使用root用户登录,然后su - oracle 转到其他用户操作--//一般都加入 - 参数.这个已经成了条件反射...^_^. # man su Change the effective user id and group id to that of USER. -, -l, --loginmake the shell a login shell --//也就是使用login里面的shell,设置好对…
Linux 常用命令大全 [帮助命令] command —help man command man 2 command 查看第2个帮助文件 man -k keyword 查找含有关键字的帮助 info command 查看指令的帮助信息 whatis command 获取指令索引的简短说明 whatis apropos keyword = man -k keyword type command 显示是内建指令/别名/path 中的路径 type -a command 显示path 中的命令路径…