问题 使用Zabbix监控一些云主机时,可能遇到: Lack of free swap space on Zabbix server 使用命令: free -m 看到: Swap 的total,used,free值都是0.这是因为Zabbix没有考虑云主机用户. 处理步骤: Configuration-Templates-Template OS Linux-Triggers 选择 Lack of free swap space on {HOST.NAME} 修改Expression {Templ…
故障描述: Lack of free swap space on Zabbix server 故障原因: 情况一:云主机:因为Zabbix监控没有考虑虚拟主机的swap分区情况. 情况二:物理主机:说明没有启用swap分区,或者swap分区没有挂在上. [root@localhost ~]# free -m // 通过free -m命令发现swap分区 total 0 used 0 free 0 解决方法: 方法一:修改zabbix监控模板 添加以下内容:{Template OS Li…
报错详情如下: 是因为Zabbix监控没有考虑虚拟主机的交换空间情况 解决办法修改配置 修改表达式内容:{Template OS Linux:system.swap.size[,pfree].last(0)}<50 and {Template OS Linux:system.swap.size[,free].last(0)}<>0 已解决…
在模板(Template)里找到Linux OS模板,修改触发器 配置>模板>Template OS Linux>触发器 找到swap关键字 修改 {Template OS Linux:system.swap.size[,pfree].last(0)}<50 为 {Template OS Linux:system.swap.size[,pfree].last(0)}<50 and {Template OS Linux:system.swap.size[,free].last(…
UNIX / Linux: 2 Ways to Add Swap Space Using dd, mkswap and swapon by RAMESH NATARAJAN on AUGUST 18, 2010 Question: I would like to add more swap space to my Linux system. Can you explain with clear examples on how to increase the swap space? Answe…
[BZOJ4619][Wf2016]Swap Space Description 你有许多电脑,它们的硬盘用不同的文件系统储存数据.你想要通过格式化来统一文件系统.格式化硬盘可能使它的容量发生变化.为了格式化,你需要买额外的硬盘.当然,你想要买容量最小的额外储存设备以便省钱.你可以按任意顺序格式化硬盘.格式化之前,你要把该硬盘上所有数据移到一个或更多的其他硬盘上(可以分割数据).格式化后,该硬盘可以立刻开始使用.你没有必要把数据放到它原来所在的硬盘上.数据也可以被放到你额外买的硬盘上.举个例子,…
Introduction One of the easiest way of increasing the responsiveness of your server and guarding against out-of-memory errors in applications is to add some swap space. In this guide, we will cover how to add a swap file to an Ubuntu 16.04 server. Wa…
报错信息: Error occurred during initialization of VM Could not reserve enough space for object heap Could not create the Java virtual machine. 解决方法: 在catalina.bat中增加如下设置 set JAVA_OPTS=-server -XX:MaxHeapSize=256m -Xms512m -Xmx512m…
Xamarin Android 编译报错: COMPILETODALVIK : UNEXPECTED TOP-LEVEL error java.lang.OutOfMemoryError: Java heap space 解决: 用记事本打开 xamarin android的项目文件 *.csproj 找到<JavaMaximumHeapSize>节点,我的配置是空的,加上1G后,编译通过. 参考: The fix was to add this section in your .csproj…
Eclipse集成Tomcat报错,使用Spring 4.3 框架,运行一段应用后,控制台报错: Unexpected death of background thread ContainerBackgroundProcessor[StandardEngine[Catalina]] java.lang.OutOfMemoryError: PermGen space https://stackoverflow.com/questios/26616076/spring-tool-suite-tomc…
起因: 新添加完自定义监控项后重启zabbix-agent时失败,查看/var/log/zabbix/zabbix-agentd.log 发现系统提示zabbix共享内存报错 zabbix_agentd []: cannot open log: cannot create semaphore set: [] No space left on device 解决办法: 通过修改 vim /etc/sysctl.conf kernel.sem = sysctl -p /etc/sysctl.conf…