运维
文章平均质量分 73
wbj0110
这个作者很懒,什么都没留下…
展开
-
MySQL常见性能命令(转)
1, 查看MySQL服务器配置信息mysql> show variables;2, 查看MySQL服务器运行的各种状态值mysql> show global status;3, 慢查询mysql> show variables like ‘%slow%’;+——————+——-+| Variable_name | Value |...原创 2014-05-06 14:34:25 · 151 阅读 · 0 评论 -
Apache条件日志记录
条件日志许多时候,根据与请求特征相关的环境变量来有选择地记录某些客户端请求会带来便利。首先,需要使用SetEnvIf指令来设置特定的环境变量以标识符合某种特定条件的请求,然后用CustomLog指令的 env= 子句,根据这些环境变量来决定记录或排除特定的请求。例如:# 不记录本机发出的请求SetEnvIf Remote_Addr “127\.0\.0\.1″ dontlog# 不记录...原创 2014-06-25 15:51:05 · 98 阅读 · 0 评论 -
skipfish和nikto的简单应用
漏洞扫描# wget -c http://skipfish.googlecode.com/files/skipfish-2.10b.tgz# tar xzvf skipfish-2.10b.tgz# cd skipfish-2.10b# make# ./skipfish -o /tmp/log http://www.gaizaoren.org# wget -c http://www.c...原创 2014-06-26 09:51:13 · 193 阅读 · 0 评论 -
网络性能测试之iperf的安装使用
网络性能测试之iperf的安装使用Iperf 是一个网络性能测试工具。Iperf可以测试TCP和UDP带宽质量。Iperf可以测量最大TCP带宽,具有多种参数和UDP特性。Iperf可以报告带宽,延迟抖动和数据包丢失。Iperf使用方法与参数说明参数说明-s 以server模式启动,eg:iperf -s-c host以client模式启动,host是server端地址,eg:iper...原创 2014-06-27 10:09:25 · 529 阅读 · 0 评论 -
防暴力破解DenyHosts
DenyHosts是用于阻止SSH服务器暴力破解攻击的的脚本,由python编写。官网:http://denyhosts.sourceforge.net/下载:http://sourceforge.net/projects/denyhosts/files/帮助显示代码01020304050607080910111213...原创 2014-06-30 09:33:34 · 138 阅读 · 0 评论 -
CentOS / Redhat Iptables Firewall Configuration Tutorial
显示代码001002003004005006007008009010011012013014015016017018019020021022023024025026027028029030031032033034035036037038...原创 2014-06-30 09:34:40 · 117 阅读 · 0 评论 -
nc的用法
显示代码001002003004005006007008009010011012013014015016017018019020021022023024025026027028029030031032033034035036037038...原创 2014-06-30 09:35:09 · 710 阅读 · 0 评论 -
Nagios
服务端安装:tar xzvf nagios-3.3.1.tar.gzcd nagios/usr/sbin/useradd nagios -s /sbin/nologins/usr/sbin/groupadd nagcmd/usr/sbin/usermod -G nagcmd nagios/usr/sbin/usermod -G nagcmd nobody./configure –with-co...原创 2014-07-01 09:28:58 · 93 阅读 · 0 评论 -
apache rewrite应用实例
1、仅允许特定IP地址访问特定页面,不匹配跳转到指定页面;RewriteEngine onRewriteCond %{REMOTE_ADDR} !^192.168.2.10RewriteCond %{REMOTE_ADDR} !^192.168.3.11 [NC]RewriteCond %{REQUEST_URI} ^/myhome/index/$ [NC]RewriteRule (.*) /...原创 2014-07-02 09:28:17 · 166 阅读 · 0 评论 -
防暴力破解Fail2ban
Fail2ban是类似于DenyHosts的防暴力破解软件,也是python开发,它不仅仅支持ssh服务,还支持ftp,mail等,也不仅仅支持hosts.deny,还可以调用iptables屏蔽IP.官网:http://www.fail2ban.org/wiki/index.php/Main_Page下载:http://sourceforge.net/projects/fail2ban/...原创 2014-07-02 09:29:11 · 150 阅读 · 0 评论 -
DoS Deflate
(D)DoS Deflate is a lightweight bash shell script designed to assist in the process of blocking a denial of service attack. It utilizes the command below to create a list of IP addresses connected t...原创 2014-07-03 09:57:51 · 150 阅读 · 0 评论 -
网络性能测试之pathload的安装使用
网络性能测试之pathload的安装使用pathload用于确定两点之间网络的理论可用带宽。依旧分为服务器端和客户端帮助显示代码010203040506070809101112131415161718192021222324252627282930...原创 2014-07-03 09:58:16 · 379 阅读 · 0 评论 -
Upgrading Cacti
Upgrading CactiBackup the old Cacti database.shell> mysqldump -l –add-drop-table cacti > mysql.cactiNote: You will probably have to specify the -u and -p flags for the MySQL username and...原创 2014-07-03 09:58:34 · 88 阅读 · 0 评论 -
Crontab 错误分析及不执行原因
CronCron is a time-based job scheduler in Unix-like computer operating systems.The name cron comes from the world chronograph(a time-piece).Cron enables users to schedule jobs(commands or shell scri...原创 2014-07-04 09:11:14 · 134 阅读 · 0 评论 -
配置网易163的yum源
1. 下载repo文件 下载地址:http://mirrors.163.com/.help/CentOS6-Base-163.repo 2. 备份并替换系统的repo文件[root@localhost ~]# cd /etc/yum.repos.d/[root@localhost ~]# mv CentOS-Base.repo CentOS-Base.repo.bak...原创 2014-07-04 09:11:45 · 273 阅读 · 0 评论 -
linux远程执行命令
remotecommand.sh:#!/bin/shHOST_LIST="host1 host2 host3 host4"SSH_PORT=2202for loop in $HOST_LISTdo echo "executing in $loop:" ssh -p $SSH_PORT $loop "$1" echo...原创 2014-07-04 09:12:04 · 160 阅读 · 0 评论 -
Varnish
显示代码1234567To use the varnish-cache.org repository, run rpm --nosignature -i http://repo.varnish-cache.org/redhat/varnish-3.0/el5/noarch/varnish-release-3.0-1.noarch.rp...原创 2014-07-04 09:12:21 · 87 阅读 · 0 评论 -
查看Linux磁盘空间大小
查看Linux磁盘空间大小一、df 命令;df 是来自于coreutils 软件包,系统安装时,就自带的;我们通过这个命令可以查看磁盘的使用情况以及文件系统被挂载的位置;举例:[root@localhost beinan]# df -lhFilesystem 容量 已用 可用 已用% 挂载点/dev/hda8 11G 6.0G 4.4G 58% //dev/shm ...原创 2014-06-24 15:16:06 · 117 阅读 · 0 评论 -
Icinga-cn安装
1、概述ICINGA项目是 由Michael Luebben、Hendrik Backer和JoergLinge等人发起的,他们都是现有的Nagios项目社区委员会的成员,他们承诺,新的开源项 目将完全兼容以前的Nagios应用程序及扩展功能。在新项目的网站上,他们是如此定义ICINGA的,这将是一个介于Nagios社区版和企业版间的产 品。特别将致力于解决Nagios项目现在的问题,比如不能...原创 2014-06-24 15:15:25 · 172 阅读 · 0 评论 -
Best Practices for Speeding Up Your Web Site(加快您的Web站点的最佳做法)
Best Practices for Speeding Up Your Web Site原载:http://developer.yahoo.com/performance/rules.htmlThe Exceptional Performance team has identified a number of best practices for making web pages fast. ...原创 2014-05-24 09:49:36 · 250 阅读 · 0 评论 -
运维流程
运维流程随着企业的发展壮大,业务系统和服务器数量的增多,需要建立完善而成熟的IT运维管理体制,通过流程管理,不断提高IT运维质量,实现高效运维,提升组织内IT服务满意度,实现运维自动化管理,特建立此流程制度。运维内部流程1、 根据业务上架,研发、测试、产品等部门的需求采用硬件采购机房选型流程;2、 鉴于所有服务器采用redhat EL5(Centos5)系统,采用系统安装规范;3、 根据实...原创 2014-05-27 14:59:42 · 2015 阅读 · 0 评论 -
Zabbix监控Key相关
1、监控进程/usr/local/zabbix/bin/zabbix_get -s 127.0.0.1 -k “net.tcp.service[http]”2、监控端口/usr/local/zabbix/bin/zabbix_get -s 127.0.0.1 -k “net.tcp.port[,80]” 结果:1存在,0不存在;3、进程数量/usr/local/zabbix/bin...原创 2014-05-27 15:12:18 · 126 阅读 · 0 评论 -
tcpdump抓mysql包
#!/bin/bash#this script used montor mysql network traffic.echo sqltcpdump -i eth0 -s 0 -l -w - dst port 3306 | strings | perl -e 'while(<>) { chomp; next if /^[^ ]+[ ]*$/; if(/^(SEL...原创 2014-05-28 13:10:06 · 181 阅读 · 0 评论 -
Top 20 Nginx WebServer Best Security Practices
Nginx is a lightweight, high performance web server/reverse proxy and e-mail (IMAP/POP3) proxy. It runs on UNIX, GNU/Linux, BSD variants, Mac OS X, Solaris, and Microsoft Windows. According to Netcr...原创 2014-05-29 13:11:57 · 2148 阅读 · 0 评论 -
使用pscp实现Windows 和 Linux服务器间远程拷贝文件
在工作中,每次部署应用时都需要从本机Windows服务器拷贝文件到Linux上,有时还将Linux 上的文件拷到本机,这些操作以前都是使用Ftp 工具FlashFxp 来操作的,最近就想有什么更快捷的方法没,比如直接命令操作。结合网上查询的资料,发现 pscp 能够实现Windows 和Linux 间相互传输文件。下文将详细描述如何使用:一、pscp 简要描述:PSCP (PuTTY S...原创 2014-06-02 13:01:30 · 98 阅读 · 0 评论 -
linux清空文件内容方法
[root@dbrg-2 ~]# vi mboxiiii~root@dbrg-2 ~]# >mbox[root@dbrg-2 ~]# more mbox[root@dbrg-2 ~]# vi mboxiiii~ ...原创 2014-06-02 13:03:24 · 118 阅读 · 0 评论 -
LVS + Keepalived之dr模式
显示代码001002003004005006007008009010011012013014015016017018019020021022023024025026027028029030031032033034035036037038...原创 2014-06-06 11:14:34 · 253 阅读 · 0 评论 -
CentOS ping: unknown host 解决方法
如果某台Linux(CentOS)服务器ping域名, 如下提示:# ping www.sina.comping: unknown host www.sina.com确认网络没问题的情况下, 可以通过如下步骤寻找解决办法:1) 确认设置了域名服务器 # cat /etc/resolv.conf nameserver 8.8.8.8 #(Google的公共DNS服务) n...原创 2014-06-12 14:37:43 · 135 阅读 · 0 评论 -
linux swappiness
/etc/sysctl.conf sysctl vm.swappiness = 60 # [0-100] 越小表示尽量不要使用swap,而使用物理内存 查看当前值:sysctl vm.swappiness原创 2014-06-14 16:08:05 · 101 阅读 · 0 评论 -
教你如何在linux云主机上挂载云硬盘
通过SSH登录LINUX主机,进行云硬盘挂载,具体详细步骤如下所示:1.首先查看系统中磁盘信息,并确定是否需要分区。[root@localhost ~]# fdisk -lDisk /dev/sda: 8589 MB, 8589934592 bytes 此处是sda的磁盘信息255 heads, 63 sectors/track, 1044 cylindersUnits =...原创 2014-06-15 01:23:58 · 1971 阅读 · 0 评论 -
收集的全国DNS
114.114.114.114[江苏省南京市 信风网络科技有限公司公众DNS服务器]120.198.232.139[中国 移动]120.198.232.159[中国 移动]120.198.232.69[中国 移动]121.194.2.2[北京市 CERNET数据中心VIP通道项目]123.129.209.28[山东省济南市 联通]124.161.87.155[四川省南充市 联通]125.39....原创 2014-06-16 11:27:28 · 1264 阅读 · 0 评论 -
Linux中查看CPU信息
cat /proc/cpuinfo中的信息processor 逻辑处理器的id。physical id 物理封装的处理器的id。core id 每个核心的id。cpu cores 位于相同物理封装的处理器中的内核数量。siblings 位于相同物理封装的处理器中的逻辑处理器的数量。 1 查看物理CPU的个数#...原创 2014-06-17 16:06:29 · 79 阅读 · 0 评论 -
Shell scripts
显示代码01020304050607080910111213141516171819202122#! /bin/bash shopt -s -o nounset declare -i p=0SRC=${1:?'Please input src f...原创 2014-06-22 15:02:20 · 78 阅读 · 0 评论 -
Cobbler
1、安装cobbler64位 rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm32位 rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpmyum install yum...原创 2014-06-22 15:02:38 · 85 阅读 · 0 评论 -
Rsync
rsync客户端配置帮助显示代码01020304050607080910111213141516[root@server05 ~]# crontab -l*/10 * * * * /home/system/rsync/rsync.sh[root@server05 ~]# m...原创 2014-07-04 09:12:37 · 97 阅读 · 0 评论