• 推荐使用最新版火狐浏览器或Chrome浏览器访问本网站
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏吧

标签:服务器

Linux很多TIME_WAIT问题的解决方法

Linux很多TIME_WAIT问题解决 0x00 问题 0x01 危害 0x02 解决办法 0x03 注意 0x04 总结 0x05 使用长链接 0x00 问题 一个服务器运行用nginx的web服务,由于php需要频繁的访问数据库,而且使用的都是短链接,因此一段时间内产生并保持大量的TIME_WAIT。 $ netstat -an | awk ……

upstream response is buffered to a temporary file -Nginx

Nginx 日志中“an upstream response is buffered to a temporary file …”问题解决 错误日志:warn:an upstream response is buffered to a temporary file 解决办法: 在nginx配置文件,php模块中添加: fastcgi_buffe……

Centos rootfs 100% 问题解决

Centos rootfs 100% 问题解决 问题现象,服务器运行 nginx + ffmpeg 以后,工作了一段时间,phpMyAdmin打开出现空白页,查看nginx error log 显示: No space left on device; 于是查看硬盘空间: [root@ns3032603 ~]# df -h Filesystem……

Centos怎么升级防火墙iptables

Centos怎么升级防火墙iptables   0x00 服务器系统使用的系统是Centos 6, 在服务器有异常访问时,想限制IP的访问频率,却发现iptables模块不支持;于是就需要升级服务器的防火墙iptables; 0x01 下载 #查找需要的版本 http://ftp.netfilter.org/pub/iptables/ #下载……

Linux自动释放内存脚本

Linux自动释放内存脚本 在root目录下建立cache.sh文件: 1: vim cache.sh #! /bin/bash #Memory小于400M时 释放Cached的内存 freemem=$(cat /proc/meminfo | grep "MemFree" | awk '{print $2}') if [ $freemem -le 40……