`
文章列表
【基本介绍】 memadmin是可视化的memcached管理与监控工具。 【安装配置】 memadmin运行在支持memcache扩展的php环境中,服务器上需要安装memcache+php+apache/ng 现在新的版本php一般都默认有了memcahce扩展。 php扩展memcache wget http://pecl.php.net/get/memcache-2.2.5.tgz tar zxvf memcache-2.2.5.tgz cd memcache-2.2.5 /usr/bin/phpize #(生成config编译文件) ./configure --enable-mem ...
saltstack 学习之cp模块 【基本介绍】 这里简单介绍cp模块,cp实现文件的推送和拉取。 【基本配置】 cp.push - 获取minion的文件到master机器 Push a file from the minion up to the master, the file will be saved to the salt master in the master's minion files cachedir (defaults to /var/cache/salt/master/minions/minion-id/files) Since this feature allows ...
【基本情况】 这里介绍网络连接的11种状态,TCP三次握手/四次挥手 【详细介绍】 通常情况下:一个正常的TCP连接,都会有三个阶段:1、TCP三次握手;2、数据传送;3、TCP四次挥手 SYN: (同步序列编号,Synchronize Sequence Numbers)该标志仅 ...
【基本介绍】 netstat - Print network connections, routing tables, interface statistics, masquerade connections, and multicast memberships netstat可以查看网络连接信息,接口流量等功能 【基本参数】 -a 或–all 显示所有连线中的Socket。 -A <网络类型>或–<网络类型> 列出该网络类型连线 ...
【基本介绍】 vmstat - Report virtual memory statistics 可以展现给定时间间隔的服务器的状态值,包括服务器的CPU使用率,内存使用,虚拟内存交换情况,IO读写情况 【结果介绍】 root@ubuntu:~# vmstat 2 procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu---- r b swpd free buff cache si so bi bo in cs us sy id wa 0 ...
网站统计工具,这里边的PV、UV、IP值都代表什么呢,下面做详细的说明。 先说下PV、UV、IP的定义:   PV(访问量):Page View, 即页面浏览量或点击量,用户每次刷新即被计算一次。   UV/UU(独立访客):Unique Visitor/User,访问您网站 ...
【基本介绍】 在yum安装软件的时候有时候会报warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID*****. 【问题原因】 签名的作用就是为了验证包的完整性和可靠性。 In fact, all recently-produced package files will have these verification measures built in automatically.  Older package files had only a PGP-based signature; if that was mi ...
【基本情况】 我们可以使用telnet来连接memcached服务来查看memcached的状态等信息。 【telnet连接】 引用telnet host port command 【基本命令】 【简单例子】 存储命令格式 引用<command name> <key> <flags> <exptime> <bytes> <data block> 参数说明如下: <command name> set/add/replace <key>         查找关键字 <flag ...
【基本介绍】 nagios的客户端nrpe自带了check_procs可以监控进程的数量(nrpe2.13带有这个脚本,早期版本不确定) 【基本参数】 [root@local libexec]# ./check_procs -h check_procs v1.4.15 (nagios-plugins 1.4.15) Checks all processes and generates WARNING or CRITICAL states if the specified metric is outside the required threshold ranges. The me ...
【基本介绍】 网段的分析可以帮助我们查看两个局域地址是否可以互联,在linux平台iptables封堵ip段,web服务器允许特定ip段的访问等等。 【基本概念】 IP段   A类IP段  0.0.0.0 到127.255.255.255   B类IP段  128.0.0.0 到191.255.255.255   C类IP段  192.0.0.0 到223.255.255.255 子网掩码   默认分配的子网掩码每段只有255或0   A类的默认子网掩码 255.0.0.0    一个子网最多可以容纳1677万多台电脑   B类的默认子网掩码 255.255.0.0   一个子网最多可以容 ...
【基本介绍】 curl  is  a  tool to transfer data from or to a server, using one of the supported protocols (HTTP, HTTPS, FTP, FTPS, SCP, SFTP, TFTP, DICT, TELNET, LDAP or FILE).  The command is designed to work without user interaction. curl就是一个数据上传下载的工具,支持多种协议的非交互式命令工具 【基本参数】 [root@pandaVM tmp]# curl - ...
【基本介绍】 作为linux admin要经常创建用户,并初始化密码。mkpasswd会生成一定强度的密码。 【安装】 yum instll expect 【基本参数】 [root@vpn yum.repos.d]# man mkpasswd MKPASSWD(1) MKPASSWD(1) NAME mkpasswd - generate new password, optionally apply it to a user SYNOPSIS ...
【基本介绍】 Python的编码问题,永无止境。 【错误介绍】 系统默认的编码是ascii [root@vpn ~]# python Python 2.6.8 (unknown, Nov 7 2012, 14:47:45) [GCC 4.1.2 20080704 (Red Hat 4.1.2-52)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> impor ...
saltstack 学习之note groups 【基本介绍】 这里介绍saltstatck的分组 【配置】 配置文件:/etc/salt/master nodegroups: group1: 'L@foo.domain.com,bar.domain.com,baz.domain.com or bl*.domain.com' group2: 'G@os:Debian and foo.domain.com' 【组合】 Letter Match Type Example G Grains glob G@os:Ubuntu E PCRE Minion ID E@w ...
【基本介绍】 这里我们使用dd命令来测试硬盘的读写速度 dd - convert and copy a file 【基本操作】 dd用于复制,从if读出,写到of。if=/dev/zero不产生IO,因此可以用来测试纯写速度。同理of=/dev/null不产生IO,可以用来测试纯读速度。bs是每次读或写的大小,即一个块的大小,count是读写块的数量。 #纯写 [root@nagios ~]# time dd if=/dev/zero of=/var/test bs=8k count=1000000 1000000+0 records in 1000000+0 records out ...
Global site tag (gtag.js) - Google Analytics