查看系統負載
top命令
free命令
手動增長swap
監控磁盤
[root@www ~]# w 08:34:03 up 1 min, 1 user, load average: 1.78, 0.73, 0.27 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT root pts/0 192.168.204.1 08:33 3.00s 0.04s 0.02s w
[root@www ~]# lscpu Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 1 On-line CPU(s) list: 0 Thread(s) per core: 1 Core(s) per socket: 1 座: 1 NUMA 節點: 1 廠商 ID: GenuineIntel CPU 系列: 6 型號: 42 型號名稱: Intel(R) Core(TM) i3-2350M CPU @ 2.30GHz 步進: 7 CPU MHz: 2294.829 BogoMIPS: 4589.65 超管理器廠商: VMware 虛擬化類型: 徹底 L1d 緩存: 32K L1i 緩存: 32K L2 緩存: 256K L3 緩存: 3072K NUMA 節點0 CPU: 0 Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology tsc_reliable nonstop_tsc aperfmperf eagerfpu pni pclmulqdq ssse3 cx16 pcid sse4_1 sse4_2 x2apic popcnt xsave avx hypervisor lahf_lm epb xsaveopt dtherm arat pln pts
[root@www ~]# top top - 08:53:38 up 21 min, 1 user, load average: 0.00, 0.03, 0.09 Tasks: 97 total, 1 running, 96 sleeping, 0 stopped, 0 zombie %Cpu(s): 0.0 us, 0.3 sy, 0.0 ni, 99.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 1005628 total, 726728 free, 132984 used, 145916 buff/cache KiB Swap: 2097148 total, 2097148 free, 0 used. 709128 avail Mem PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 5348 root 20 0 301088 6540 5100 S 0.3 0.7 0:01.79 vmtoolsd 5938 root 20 0 158860 5596 4252 S 0.3 0.6 0:00.34 sshd 1 root 20 0 127892 6504 4140 S 0.0 0.6 0:02.30 systemd 2 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kthreadd .....
[root@www ~]# free total used free shared buff/cache available Mem: 1005628 133060 726464 7636 146104 708944 Swap: 2097148 0 2097148
#available是free的物理內存加上buff/cache所剩餘(暫時不使用)的物理內存之和ios
buffer:這部份內存是從CPU產生即將寫入磁盤裏去的那部分數據shell
cached:這部份內存是先從磁盤裏讀出來,而後臨時存到內存裏的那部分數據 api
[root@www ~]# dd if=/dev/zero of=/bigfile bs=1M count=1000 #建立一個增長1G內存容量的文件 記錄了1000+0 的讀入 記錄了1000+0 的寫出 1048576000字節(1.0 GB)已複製,18.7426 秒,55.9 MB/秒 [root@www ~]# mkswap /bigfile #格式化爲swap格式 正在設置交換空間版本 1,大小 = 1023996 KiB 無標籤,UUID=969ba398-81ac-416d-9453-86443f98630b [root@www ~]# chmod 600 /bigfile [root@www ~]# swapon /bigfile 掛載文件
vi /etc/fstab
/bigfile swap swap defaults 0 0
[root@www ~]# yum install -y sysstat [root@www ~]#iostat Linux 3.10.0-957.el7.x86_64 (www.aaa.com) 2019年03月08日 _x86_64_ (1 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 0.99 0.00 1.87 3.69 0.00 93.45 Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn scd0 0.02 0.86 0.00 1028 0 sda 7.41 173.86 53.91 208149 64543
[root@www ~]# iostat -dx 1 5 Linux 3.10.0-957.el7.x86_64 (www.aaa.com) 2019年03月08日 _x86_64_ (1 CPU) Device: rrqm/s wrqm/s r/s w/s rkB/s wkB/s avgrq-sz avgqu-sz await r_await w_await svctm %util scd0 0.00 0.00 0.01 0.00 0.61 0.00 114.22 0.00 49.44 49.44 0.00 44.44 0.05 sda 0.00 0.12 3.60 1.81 122.54 41.78 60.72 0.19 35.69 30.00 47.03 8.90 4.82 Device: rrqm/s wrqm/s r/s w/s rkB/s wkB/s avgrq-sz avgqu-sz await r_await w_await svctm %util scd0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 sda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 Device: rrqm/s wrqm/s r/s w/s rkB/s wkB/s avgrq-sz avgqu-sz await r_await w_await svctm %util scd0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 sda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 Device: rrqm/s wrqm/s r/s w/s rkB/s wkB/s avgrq-sz avgqu-sz await r_await w_await svctm %util scd0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 sda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 Device: rrqm/s wrqm/s r/s w/s rkB/s wkB/s avgrq-sz avgqu-sz await r_await w_await svctm %util scd0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 sda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
[root@www ~]# yum install -y iotop