`
xiaohlang
  • 浏览: 91279 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表

服务器连接数

cat /proc/slabinfo  | grep ip_conn | grep -v ip_conntrack_expect | awk '{print $2}'
QPS (Query per second) (每秒查询量) Questions/Uptime show global status like 'Questions'; show global status like 'Uptime'; TPS(Transaction per second) (每秒事务量,如果是InnoDB会显示,没有InnoDB就不会显示) Com_commit + Com_rollback)/Uptime Read/Writes Ratio(数据库读写比率,对是否使用MySQL Replication还是使用MySQL Cluster很有参考价值。) MyIS ...
http://www.mysqlperformanceblog.com/2006/06/09/why-mysql-could-be-slow-with-large-tables/ So if you’re dealing with large data sets and complex queries here are few tips Try to fit data set you’re working with in memory – Processing in memory is so much faster and you have whole bunch of problems s ...
http://usenix.org/events/fast04/tech/full_papers/radkov/radkov_html/node14.html Impact of Sequential and Random I/O Two key factors impact the network message overheads of data operations--the size of read and write requests and the access characteristics of the requests (sequential or random). Th ...
http://www.askapache.com/htaccess/apache-status-code-headers-errordocument.html - 200 -302 redirect code 304 Not Modified -500 A generic error message, given when no more specific message is      suitable. -503 The server is currently unavailable (because it is overloaded or       down for m ...
传统的数据传输协议,可能应用的比较多的就是TCP、UDP、FTP等,FTP协议本身也是通过TCP的控制连接和数据连接实现。如果要实现一个大数据量的文件传输,速度是关键问题。 目前已有的技术产品包括 1、Aspera公司的专利技术FASP,这个技术包括Amazon在内很多公司都在使用,但需要按照流量付费。据该公司技术测试,相比传统TCP协议,他们技术的传输速度提高百倍以上,当然带宽是10G、100G的前提下测试的。 2、UDT协议,这个协议是基于UDP协议的优化产品,是个开源项目,符合BSD规范。UDT协议改进了一些拥堵算法及长距离传输、穿透防火墙的能力,不会和网络环境中的TCP抢占资源,等等 ...
1、客户端缓存 04年的老文章,但讲的很详细 http://onjava.com/pub/a/onjava/2004/03/03/filters.html http://onjava.com/pub/a/onjava/2003/11/19/filters.html?page=1 2、memcache / redis 3、数据库缓存    根据查询sql作为key来缓存结果集。例如mysql5     可以通过SHOW VARIABLES LIKE 'have_query_cache'; 查询是否启用了数据缓存,     SHOW VARIABLES LIKE 'cache_lim ...
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP ON maildb.* TO 'mail'@'localhost' IDENTIFIED by 'mailPASSWORD '; 创建snort数据库,创建snort用户,将snort库所有表的所有权限赋予用户snort。 mysql> create database snort; Query OK, 1 row affected (0.06 sec) 创建数据库 mysql> use mysql; 进入mysql库 mysql> insert i ...
国内一篇文章,包含源代码: http://blog.csdn.net/Mars_Ma_OK/archive/2010/04/15/5488135.aspx
Mencoder 转 flv mencoder -ffourcc FLV1 -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames -of lavf -oac mp3lame -lameopts aq=9:cbr:br=64:vol=2 -ovc lavc -lavcopts vcodec=flv:vbitrate=200:acodec=mp3:abitrate=56 -vf scale=320:270,expand=320:270:::1,crop=320:270:0:0 -ofps 18 -srate 22050 inpu ...
安装ffmpeg和x264过程: http://www.corbellconsulting.com/2010/07/using-ffmpeg-to-add-and-watermark-overlay-on-a-video-2/ 安装yasm: wget http://www.tortall.net/projects/yasm/releases/yasm-1.1.0.tar.gz 安装完成后配置path=/usr/local/yasm/bin (http://www.tortall.net/projects/yasm/wiki/ ...
一、安装jdk 1、安装jdk tar包 2、修改默认版本 ln -s -f /usr/local/jdk/jre/bin/java /usr/bin/java ln -s -f /usr/local/jdk/bin/javac /usr/bin/javac 3、配置/etc/profile JAVA_HOME=/usr/local/jdk PATH=$PATH:$JAVA_HOME/bin CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar JAVA_OPTS="-server -Xms512m -Xm ...
1.下载安装文件,我选的安装文件是vsftpd-2.0.6.tar.gz 命令:wget ftp://vsftpd.beasts.org/users/cevans/vsftpd-2.0.6.tar.gz 2.解压缩 命令:tar zxvf vsftpd-2.0.6.tar.gz ; 3.安装 命令: #cd vsftpd-2.0.6; #make ;make install; 4.拷贝配置文件 命令: # cp vsftpd.conf /etc/vsftpd.conf ; # cp Redhat/vsftpd.pam /etc/pam.d/vsftpd; 5.修 ...
1、基本mysql安装 因为工作需要,今天在linux上安装了mysql,现在把大致的过程记录一下。 我用的mysql的版本的是:mysql-5.1.49-linux-i686-icc-glibc23.tar.gz 在官网上就可以下载到。 先期工作:建立mysql用户组,mysql用户,并且把mysql用户加入到mysql用户组中。 建立mysql用户组:groupadd mysql 建立mysql用户并加入mysql用户组:useradd mysql -g mysql -p mysql123456 -s /sbin/nologin -M ...
# /etc/init.d/mysql stop # mysqld_safe --user=mysql --skip-grant-tables --skip-networking & # mysql -u root mysql mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root'; mysql> FLUSH PRIVILEGES; mysql> quit
Global site tag (gtag.js) - Google Analytics