摘要: #!/bin/sh # chkconfig: 2345 40 98 # description: Start/Stop Nginx server path=/application/nginx/sbin pid=/application/nginx/logs/nginx.pid RETVAL=0 . 阅读全文
posted @ 2017-08-31 16:38 盛碗米饭 阅读(1041) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash# filename :linux_optimize.sh# #export PATH=$PATH:/bin:/sbin:/usr/sbin# Require root to run this script.if [ "$UID" != "0" ]; then echo "Pl 阅读全文
posted @ 2017-08-31 15:05 盛碗米饭 阅读(170) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash# filename : 8_5_1.sh function usage(){ echo "usage:$0 url" exit 1} function check_url(){ wget --spider -q -o /dev/null --tries=1 -T 5 $1 i 阅读全文
posted @ 2017-08-31 14:44 盛碗米饭 阅读(254) 评论(0) 推荐(0) 编辑
摘要: <?php/*php如何连接mysql*/ /*$link = mysql_connect('localhost', 'root', '');if (!$link) { die('Could not connect: ' . mysql_error());}echo 'Connected succe 阅读全文
posted @ 2017-08-31 11:30 盛碗米饭 阅读(207) 评论(0) 推荐(0) 编辑
摘要: #!/bin/sh # filename: mon_mc.sh export MemcahedIp=$1export MemcahedPort=$2export NcCmd="nc $MemcahedIp $MemcachedPort"export MD5=3fe396c01f03425cb5e2d 阅读全文
posted @ 2017-08-31 11:15 盛碗米饭 阅读(161) 评论(0) 推荐(0) 编辑
摘要: <?php header('Content-type: text/html; charset=utf8');# 抽象接口interface hash{ public function _hash($str);}interface distribution{ public function looku 阅读全文
posted @ 2017-08-31 10:42 盛碗米饭 阅读(178) 评论(0) 推荐(0) 编辑
摘要: memcached使用详解一.memcached介绍1.基于libevent的事件处理libevent是一套跨平台的事件处理接口的封装,能够兼容包括这些操作系统:Windows/Linux/BSD/Solaris 等操作系统的的事件处理。包装的接口包括:poll、select(Windows)、ep 阅读全文
posted @ 2017-08-29 14:08 盛碗米饭 阅读(243) 评论(0) 推荐(0) 编辑
摘要: iptables简介 netfilter/iptables(简称为iptables)组成Linux平台下的包过滤防火墙,与大多数的Linux软件一样,这个包过滤防火墙是免费的,它可以代替昂贵的商业防火墙解决方案,完成封包过滤、封包重定向和网络地址转换(NAT)等功能。 iptables基础 规则(r 阅读全文
posted @ 2017-08-28 16:46 盛碗米饭 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 监控内存并发邮件 1空闲内存 free -m | awk 'NR==3 {print $NF}' 2邮件配置 #/etc/mail.rc set from oldboy@163.com smtp=smtp.163.com set smtp-auth-user=oldboy smtp-auth-pas 阅读全文
posted @ 2017-08-25 17:05 盛碗米饭 阅读(193) 评论(0) 推荐(0) 编辑
摘要: #!/bin/sh path=/server/scripts [ ! -d "$path" ] && mkdir $path #menu cat <<END 1.[install lamp] 2.[install lnmp] 3.[exit] pls input the num you want: 阅读全文
posted @ 2017-08-25 16:11 盛碗米饭 阅读(152) 评论(0) 推荐(0) 编辑