• 压测工具 siege

    siege下载地址:http://www.joedog.org/pub/siege/siege-3.0.3.tar.gz

    centos 下编译安装

    ./configure

    make

    make install

    创建.siegec.config配置文件到当前用户的家目录下  /roor/.siegerc
    /usr/local/bin/siege.config

    使用

    50个用户(每次并发量,注意不是每秒并发量) 重复100次 共产生 50 * 100 = 5000个请求
    /usr/local/siege/bin/siege -c 50 -r 100  https://www.abc.com/a.php

    50个用户 重复100次 发送GET参数
    /usr/local/siege/bin/siege -c 50 -r 100  https://www.abc.com/a.php?name=zhangsan

    50个用户 重复100次 发送POST参数 (注意引号)
    /usr/local/siege/bin/siege -c 50 -r 100  “https://www.abc.com/a.php POST name=zhangsan”

    50个用户 重复100次 发送POST参数(从文件中读取)
    /usr/local/siege/bin/siege -c 50 -r 100  “https://www.abc.com/a.php POST < /root/ab_test/post.xml”

    另外还有发送时间参数等
    详情请man 或 siege -h
    参考链接:http://www.joedog.org/siege-home/

  • Rewrite 伪静态规则 在线Apache转换为Nginx

    http://www.anilcetin.com/convert-apache-htaccess-to-nginx/

  • 线上nginx配置模块

    湖州4

    configure arguments:

    –prefix=/etc/nginx/

    –sbin-path=/usr/sbin/nginx

    –conf-path=/etc/nginx/nginx.conf

    –error-log-path=/var/log/nginx/error.log

    –http-log-path=/var/log/nginx/access.log

    –pid-path=/var/run/nginx.pid

    –lock-path=/var/run/nginx.lock

    –http-client-body-temp-path=/var/cache/nginx/client_temp

    –http-proxy-temp-path=/var/cache/nginx/proxy_temp

    –http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp

    –http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp

    –http-scgi-temp-path=/var/cache/nginx/scgi_temp

    –user=nginx

    –group=nginx

    –with-http_ssl_module

    –with-http_realip_module

    –with-http_addition_module

    –with-http_sub_module

    –with-http_dav_module

    –with-http_flv_module

    –with-http_mp4_module

    –with-http_gzip_static_module

    –with-http_random_index_module

    –with-http_secure_link_module

    –with-http_stub_status_module

    –with-mail –with-mail_ssl_module

    –with-file-aio

    –with-ipv6

    –with-cc-opt=’-O2 -g’

    –add-module=./src/nginx-http-concat

    –add-module=./src/ngx_devel_kit

    –add-module=./src/lua-module

    测试199

    configure arguments:

    –prefix=/etc/nginx –

    -conf-path=/etc/nginx/nginx.conf

    –error-log-path=/var/log/nginx/error.log

    –http-client-body-temp-path=/var/lib/nginx/body

    –http-fastcgi-temp-path=/var/lib/nginx/fastcgi

    –http-log-path=/var/log/nginx/access.log

    –http-proxy-temp-path=/var/lib/nginx/proxy

    –http-scgi-temp-path=/var/lib/nginx/scgi

    –http-uwsgi-temp-path=/var/lib/nginx/uwsgi

    –lock-path=/var/lock/nginx.lock

    –pid-path=/var/run/nginx.pid

    –with-debug

    –with-http_addition_module

    –with-http_gzip_static_module

    –with-http_realip_module

    –with-http_stub_status_module

    –with-http_ssl_module

    –with-http_sub_module

    –with-ipv6 –with-sha1=/usr/include/openssl

    –with-md5=/usr/include/openssl

    –add-module=/home/pougin/b/nginx-1.2.1/modules/nginx-echo

    –add-module=/home/pougin/b/nginx-1.2.1/modules/nginx-upstream-fair

    –add-module=/home/pougin/b/nginx-1.2.1/modules/nginx-http-concat

    –add-module=/home/pougin/fastdfs-nginx-module/src

  • 关于Nginx的一些优化(突破十万并发)

    worker_processes 8;

    nginx进程数,建议按照cpu数目来指定,一般为它的倍数。

    worker_cpu_affinity 00000001 00000010 00000100 00001000 00010000 00100000 01000000 10000000;

    为每个进程分配cpu,上例中将8个进程分配到8个cpu,当然可以写多个,或者将一个进程分配到多个cpu。

    worker_rlimit_nofile 102400;

    这个指令是指当一个nginx进程打开的最多文件描述符数目,理论值应该是最多打开文件数(ulimit -n)与nginx进程数相除,但是nginx分配请求并不是那么均匀,所以最好与ulimit -n的值保持一致。

    use epoll;

    使用epoll的I/O模型,这个不用说了吧。

    worker_connections 102400;

    每个进程允许的最多连接数,理论上每台nginx服务器的最大连接数为worker_processes*worker_connections。

    keepalive_timeout 60;

    keepalive超时时间。

    client_header_buffer_size 4k;

    客户端请求头部的缓冲区大小,这个可以根据你的系统分页大小来设置,一般一个请求的头部大小不会超过1k,不过由于一般系统分页都要大于1k,所以这里设置为分页大小。分页大小可以用命令getconf PAGESIZE取得。

    open_file_cache max=102400 inactive=20s;

    这个将为打开文件指定缓存,默认是没有启用的,max指定缓存数量,建议和打开文件数一致,inactive是指经过多长时间文件没被请求后删除缓存。

    open_file_cache_valid 30s;

    这个是指多长时间检查一次缓存的有效信息。

    open_file_cache_min_uses 1;

    open_file_cache指令中的inactive参数时间内文件的最少使用次数,如果超过这个数字,文件描述符一直是在缓存中打开的,如上例,如果有一个文件在inactive时间内一次没被使用,它将被移除。

    net.ipv4.tcp_max_tw_buckets = 6000

    timewait的数量,默认是180000。

    net.ipv4.ip_local_port_range = 1024    65000

    允许系统打开的端口范围。

    net.ipv4.tcp_tw_recycle = 1

    启用timewait快速回收。

    net.ipv4.tcp_tw_reuse = 1

    开启重用。允许将TIME-WAIT sockets重新用于新的TCP连接。

    net.ipv4.tcp_syncookies = 1

    开启SYN Cookies,当出现SYN等待队列溢出时,启用cookies来处理。

    net.core.somaxconn = 262144

    web应用中listen函数的backlog默认会给我们内核参数的net.core.somaxconn限制到128,而nginx定义的NGX_LISTEN_BACKLOG默认为511,所以有必要调整这个值。

    net.core.netdev_max_backlog = 262144

    每个网络接口接收数据包的速率比内核处理这些包的速率快时,允许送到队列的数据包的最大数目。

    net.ipv4.tcp_max_orphans = 262144

    系统中最多有多少个TCP套接字不被关联到任何一个用户文件句柄上。如果超过这个数字,孤儿连接将即刻被复位并打印出警告信息。这个限制仅仅是为了防止简单的DoS攻击,不能过分依靠它或者人为地减小这个值,更应该增加这个值(如果增加了内存之后)。

    net.ipv4.tcp_max_syn_backlog = 262144

    记录的那些尚未收到客户端确认信息的连接请求的最大值。对于有128M内存的系统而言,缺省值是1024,小内存的系统则是128。

    net.ipv4.tcp_timestamps = 0

    时间戳可以避免序列号的卷绕。一个1Gbps的链路肯定会遇到以前用过的序列号。时间戳能够让内核接受这种“异常”的数据包。这里需要将其关掉。

    net.ipv4.tcp_synack_retries = 1

    为了打开对端的连接,内核需要发送一个SYN并附带一个回应前面一个SYN的ACK。也就是所谓三次握手中的第二次握手。这个设置决定了内核放弃连接之前发送SYN+ACK包的数量。

    net.ipv4.tcp_syn_retries = 1

    在内核放弃建立连接之前发送SYN包的数量。

    net.ipv4.tcp_fin_timeout = 1

    如果套接字由本端要求关闭,这个参数决定了它保持在FIN-WAIT-2状态的时间。对端可以出错并永远不关闭连接,甚至意外当机。缺省值是60秒。2.2 内核的通常值是180秒,你可以按这个设置,但要记住的是,即使你的机器是一个轻载的WEB服务器,也有因为大量的死套接字而内存溢出的风险,FIN- WAIT-2的危险性比FIN-WAIT-1要小,因为它最多只能吃掉1.5K内存,但是它们的生存期长些。

    net.ipv4.tcp_keepalive_time = 30

    当keepalive起用的时候,TCP发送keepalive消息的频度。缺省是2小时。

    net.ipv4.ip_forward = 0
    net.ipv4.conf.default.rp_filter = 1
    net.ipv4.conf.default.accept_source_route = 0
    kernel.sysrq = 0
    kernel.core_uses_pid = 1
    net.ipv4.tcp_syncookies = 1
    kernel.msgmnb = 65536
    kernel.msgmax = 65536
    kernel.shmmax = 68719476736
    kernel.shmall = 4294967296
    net.ipv4.tcp_max_tw_buckets = 6000
    net.ipv4.tcp_sack = 1
    net.ipv4.tcp_window_scaling = 1
    net.ipv4.tcp_rmem = 4096        87380   4194304
    net.ipv4.tcp_wmem = 4096        16384   4194304
    net.core.wmem_default = 8388608
    net.core.rmem_default = 8388608
    net.core.rmem_max = 16777216
    net.core.wmem_max = 16777216
    net.core.netdev_max_backlog = 262144
    net.core.somaxconn = 262144
    net.ipv4.tcp_max_orphans = 3276800
    net.ipv4.tcp_max_syn_backlog = 262144
    net.ipv4.tcp_timestamps = 0
    net.ipv4.tcp_synack_retries = 1
    net.ipv4.tcp_syn_retries = 1
    net.ipv4.tcp_tw_recycle = 1
    net.ipv4.tcp_tw_reuse = 1
    net.ipv4.tcp_mem = 94500000 915000000 927000000
    net.ipv4.tcp_fin_timeout = 1
    net.ipv4.tcp_keepalive_time = 30
    net.ipv4.ip_local_port_range = 1024    65000
    user  www www;
    worker_processes 8;
    worker_cpu_affinity 00000001 00000010 00000100 00001000 00010000 00100000 01000000;
    error_log  /www/log/nginx_error.log  crit;
    pid        /usr/local/nginx/nginx.pid;
    worker_rlimit_nofile 204800;
    
    events
    {
      use epoll;
      worker_connections 204800;
    }
    
    http
    {
      include       mime.types;
      default_type  application/octet-stream;
    
      charset  utf-8;
    
      server_names_hash_bucket_size 128;
      client_header_buffer_size 2k;
      large_client_header_buffers 4 4k;
      client_max_body_size 8m;
    
      sendfile on;
      tcp_nopush     on;
    
      keepalive_timeout 60;
    
      fastcgi_cache_path /usr/local/nginx/fastcgi_cache levels=1:2
       keys_zone=TEST:10m
       inactive=5m;
      fastcgi_connect_timeout 300;
      fastcgi_send_timeout 300;
      fastcgi_read_timeout 300;
      fastcgi_buffer_size 16k;
      fastcgi_buffers 16 16k;
      fastcgi_busy_buffers_size 16k;
      fastcgi_temp_file_write_size 16k;
      fastcgi_cache TEST;
      fastcgi_cache_valid 200 302 1h;
      fastcgi_cache_valid 301 1d;
      fastcgi_cache_valid any 1m;
      fastcgi_cache_min_uses 1;
      fastcgi_cache_use_stale error timeout invalid_header http_500;
    
      open_file_cache max=204800 inactive=20s;
      open_file_cache_min_uses 1;
      open_file_cache_valid 30s;
    
      tcp_nodelay on;
    
      gzip on;
      gzip_min_length  1k;
      gzip_buffers     4 16k;
      gzip_http_version 1.0;
      gzip_comp_level 2;
      gzip_types       text/plain application/x-javascript text/css application/xml;
      gzip_vary on;
    
      server
      {
        listen       8080;
        server_name  ad.test.com;
        index index.php index.htm;
        root  /www/html/;
    
        location /status
        {
            stub_status on;
        }
    
        location ~ .*\.(php|php5)?$
        {
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index index.php;
            include fcgi.conf;
        }
    
        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css)$
        {
          expires      30d;
        }
    
        log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" $http_x_forwarded_for';
        access_log  /www/log/access.log  access;
          }
    }
    fastcgi_cache_path /usr/local/nginx/fastcgi_cache levels=1:2 keys_zone=TEST:10m inactive=5m;

    这个指令为FastCGI缓存指定一个路径,目录结构等级,关键字区域存储时间和非活动删除时间。

    fastcgi_connect_timeout 300;

    指定连接到后端FastCGI的超时时间。

    fastcgi_send_timeout 300;

    向FastCGI传送请求的超时时间,这个值是指已经完成两次握手后向FastCGI传送请求的超时时间。

    fastcgi_read_timeout 300;

    接收FastCGI应答的超时时间,这个值是指已经完成两次握手后接收FastCGI应答的超时时间。

    fastcgi_buffer_size 16k;

    指定读取FastCGI应答第一部分需要用多大的缓冲区,这里可以设置为fastcgi_buffers指令指定的缓冲区大小,上面的指令指定它将使用1个16k的缓冲区去读取应答的第一部分,即应答头,其实这个应答头一般情况下都很小(不会超过1k),但是你如果在fastcgi_buffers指令中指定了缓冲区的大小,那么它也会分配一个fastcgi_buffers指定的缓冲区大小去缓存。

    fastcgi_buffers 16 16k;

    指定本地需要用多少和多大的缓冲区来缓冲FastCGI的应答,如上所示,如果一个php脚本所产生的页面大小为256k,则会为其分配16个16k的缓冲区来缓存,如果大于256k,增大于256k的部分会缓存到fastcgi_temp指定的路径中,当然这对服务器负载来说是不明智的方案,因为内存中处理数据速度要快于硬盘,通常这个值的设置应该选择一个你的站点中的php脚本所产生的页面大小的中间值,比如你的站点大部分脚本所产生的页面大小为256k就可以把这个值设置为16 16k,或者4 64k 或者64 4k,但很显然,后两种并不是好的设置方法,因为如果产生的页面只有32k,如果用4 64k它会分配1个64k的缓冲区去缓存,而如果使用64 4k它会分配8个4k的缓冲区去缓存,而如果使用16 16k则它会分配2个16k去缓存页面,这样看起来似乎更加合理。

    fastcgi_busy_buffers_size 32k;

    这个指令我也不知道是做什么用,只知道默认值是fastcgi_buffers的两倍。

    fastcgi_temp_file_write_size 32k;

    在写入fastcgi_temp_path时将用多大的数据块,默认值是fastcgi_buffers的两倍。

    fastcgi_cache TEST

    开启FastCGI缓存并且为其制定一个名称。个人感觉开启缓存非常有用,可以有效降低CPU负载,并且防止502错误。但是这个缓存会引起很多问题,因为它缓存的是动态页面。具体使用还需根据自己的需求。

    fastcgi_cache_valid 200 302 1h;
    fastcgi_cache_valid 301 1d;
    fastcgi_cache_valid any 1m;

    为指定的应答代码指定缓存时间,如上例中将200,302应答缓存一小时,301应答缓存1天,其他为1分钟。

    fastcgi_cache_min_uses 1;

    缓存在fastcgi_cache_path指令inactive参数值时间内的最少使用次数,如上例,如果在5分钟内某文件1次也没有被使用,那么这个文件将被移除。

    fastcgi_cache_use_stale error timeout invalid_header http_500;

    不知道这个参数的作用,猜想应该是让nginx知道哪些类型的缓存是没用的。 以上为nginx中FastCGI相关参数,另外,FastCGI自身也有一些配置需要进行优化,如果你使用php-fpm来管理FastCGI,可以修改配置文件中的以下值:

    <value name="max_children">60</value>

    同时处理的并发请求数,即它将开启最多60个子线程来处理并发连接。

    <value name="rlimit_files">102400</value>

    最多打开文件数。

    <value name="max_requests">204800</value>

    每个进程在重置之前能够执行的最多请求数。

  • linux 指定文件类型 批量更改目录权限

    find . type d -exec chmod 755 {} \;  更改所有的目录权限
    find . -type f -exec chmod 644 {} \; 更改所有文件权限
  • linux下如何删除(中文)乱码文件名的文件或者文件夹

    linux下:

    如果FTP上传没有选用 BIN(二进制),解压就会出现乱码

    如果有中文,有些就会出现乱码

    1. ls -i          列出乱码文件,前面的文件的 i 节点号
    2. find ./ -inum 123456 -print -exec rm {} -rf \;

    (上面的:123456 换成你的乱码文件节点号)

  • 一些常用开源软件

    操作系统:Centos※,Freebsd,Ubuntu
    网站服务:apache※,nginx※,lighttpd,php※,tomcat※,resin※
    数据  库:Mysql※,PostgreSQL,Mysql-proxy
    代理相关:lvs,keepalived,haproxy,nginx,apache,heartbeat(此行都是※)
    网站缓存:squid※,nginx※,varnish
    内存缓存:memcache※,memcached,TokyoTyrant※,MongoDB,Cassandra※,redis※,tair,CouchDB
    存储相关:Nfs※,Moosefs※,Hadoop※,gfs※,lustre,FastDFS
    版本管理:cvs,svn※,git※
    监控报警:mboy,mrtg,nagios※,cacti※,zbbix,munin※,hyperic※
    域名解析:bind※,powerdns,dnsmq※
    同步软件:rsync,sersync,drbd,csync2+lsyncd(此行都是※)
    分发工具:Secboy※,expect※,puppet※,cfengine※,ssh+rsync+sersync※
    虚拟软件:xen※,kvm
    内网软件:iptables※,zebra※,iftraf,ntop※,tc※,iftop
    邮件软件:qmail※,posfix※,sendmail
    远程拨号:openvpn※,pptp,openswan※,ipip※
    统一认证:ldap※
    队列工具:ActiveMQ※,RabbitMQ
    打包发布:mvn※,ants※,jenkins※
    测试软件:apache ab,smokeping,siege,JMeter,Webbench,LoadRunner(此行都是※)
    日志相关:syslog,rsyslog,Awstats
    DB代理  :mysql-proxy,amoeba

  • linux下 crontab文件在哪 crontab文件路径

    用户的都在/var/spool/cron/下
    /var/spool/cron/crontabs/root
  • linux三台以上服务器集群间建立ssh信任关系

    linux服务器集群之间进行ssh访问时需要输入密码,对进行scp等操作很麻烦,现教大家如何在linux服务器集群之间实现无密码访问。 ssh访问是是需要指定用户的,所以此处建立用户信任关系时以root用户为例,如服务器集群中有三台服务器,分别为A、B、C。现在要实现三台机器之间的root用户的相互无密码访问,操作步骤如下:

    (1 )用root用户登录A服务器,执行ssh-keygen -t rsa 命令,此命令为A机器上的用户root 生成密钥对。当询问保存路径时全部回车采用默认路径即可,当提示要为密钥输入 passphrase  是回车采用空密码。此命令执行完毕生成一对密钥文件 id_rsa          (私钥)和 id_rsa.pub    (公钥),默认存储在 /root/.ssh 下;
    (2 )  把生成的id_ras.pub 重定向到authorized_keys,命令是cat id_ras.pub > authorized_keys,把authorized_keys文件拷贝到B机器上得的同一目录下(命令为:scp  /root/.ssh/authorized_keys root@B: /root/.ssh/ 或者 scp  ./authorized_keys root@B: pwd);

    (3)用root用户登录B机器,按照要求执行(1)步骤,然后,将生成的 id_ras.pub 追加到authorized_keys文件中,命令是cat id_ras.pub >> authorized_keys,然后将 authorized_keys文件拷贝覆盖掉A级器上的authorized_keys文件,这样A,B机器之间就可以实现相互之间的ssh无密码访问。

    (4)对于C机器,同样将生成的生成的 id_ras.pub 追加到authorized_keys文件中,然后用新的authorized_keys文件覆盖A、B机器上的authorized_keys文件,则A、B、C机器之间就可以进行ssh无密码访问了。
    注:以上是对root用户而言,如果是普通用户的话,则权限需要修改,.ssh文件夹权限是700,authorized_keys文件的权限是600,执行以下两个语句即可:
    chmod 700 .ssh
    chmod 600  authorized_keys

  • 利用rsync 从 windows2003⇒linux系统备份

    windows端 安装rsyncServer(WINDOWS)版本 1.程序目录下配置文件 rsyncd.conf 修改为:

    port = 873
    use chroot = false
    strict modes = false
    uid=0
    gid=0
    list = no
    hosts allow = *
    log file = rsyncd.log
    #rsync连接时需要提供的用户名密码
    auth users = rsync_picbak 
    secrets file = rsyncd.secrets (跟rsyncd.conf配置文件是同级目录)
    
    [test] #同步目录设置  /cygdrive/d/代表d盘
    path = /cygdrive/d/websites
    read only = yes
    transfer logging = yes

    2.rsyncd.secrets的内容为:

    rsync_picbak = 111111(密码)

    3.启动rsync服务

    打开“控制面板”-->“管理工具”-->“服务”:
    找到一个RsyncServer的服务,启动它(防火墙设置记得打开873端口)

    linux端安装rsync的client客户端

    安装完毕 ,telnet 服务器ip 873 通的就可以执行以下同步操作了

    rsync -vzrtopg --progress --delete --password-file=/var2/db_bak/pass_file rsync_picbak@122.225.115.*::test/ /var2/pic_bak/208
    
    /var2/db_bak/pass_file 为存放密码的文件
    
    /var2/pic_bak/208 为本机需要备份的文件夹名称