摘要: Lack of free swap space on node1 报错信息:It probably means that the systems requires more physical memory.
Lack of free swap space on node1
报错信息:It probably means that the systems requires more physical memory. Lack of free swap space on node1
解决方式:
(1)创建交换分区
root@zabbix-server:~# mkdir /swap
root@zabbix-server:~# cd /swap/
root@zabbix-server:/swap# ls
root@zabbix-server:/swap# dd if=/dev/zero of=swapfile bs=1M count=4k
4096+0 records in
4096+0 records out
4294967296 bytes (4.3 GB) copied, 95.3588 s, 45.0 MB/s
root@zabbix-server:/swap# mkswap swapfile
Setting up swapspace version 1, size = 4194300 KiB
no label, UUID=dd075a3a-6236-4455-810d-43f25a310d77
root@zabbix-server:/swap# swapon swapfile
root@zabbix-server:/swap# free -m
total used freeshared buffers cached
Mem: 2000 1933 66 21 171 1504
-/+ buffers/cache:258 1742
Swap: 4095 0 4095
(2)优化swap,首先要先说明优化修改swap
在ubuntu 里面,swappiness的值的大小对如何使用swap分区是有着很大的联系的。
swappiness=0的时候表示最大限度使用物理内存,然后才是 swap空间,
swappiness=100的时候表示积极的使用swap分区,并且把内存上的数据及时的搬运到swap空间里面。
两个极端,对于ubuntu的默认设置,这个值等于60,建议修改为10。具体这样做
root@zabbix-server:/swap# cat /proc/sys/vm/swappiness
0
root@zabbix-server:/swap# sysctl vm.swappiness=10
vm.swappiness = 10
root@zabbix-server:/swap# vi/etc/sysctl.conf
OK,问题解决
释放SWAP文件
# swapoff /swap/swapfile
删除SWAP文件
# rm -fr /swap/swapfile