linux
发布时间:2014-06-09 23:06:00
在TimesTen的优化中,如果涉及到 Replication 或者Cache Group的话,那么针对 TCP/IP相关的参数的优化对性能是有益的。因为它们俩都是通过TCP/IP协议进行数据交互的。在安装文档(install.pdf)的39页有具体的说明: For replication, TCP send and receive buffers should be increased to a minimum of 51.........【阅读全文】
发布时间:2014-06-03 23:13:37
SendmailRPM Packages, sendmail sendmail-cf sendmail-doc#Lsof –i:25 #service postfix stop#yum install –y sendmail*#cd /etc/mail#vi sendmail.mcDAEMON_OPTIONS(* Addr=0.0.0.0, *) #receive all the requests#vi local-host-names #aloow mail.qq.com to send emailmail.qq.com#service s.........【阅读全文】
发布时间:2014-01-23 11:36:10
http://blog.yufeng.info/archives/2524前段时间看到brendangregg的 Linux Performance Analysis and Tools PPT里面提到Linux常用性能调优工具, 见下图:其中提到了的工具,大部分在我日常工具箱里或者在实践的案例里面使用过, 都有很高的价值,这里方便大家索引下:nicstat: 参见 这里opro.........【阅读全文】
发布时间:2014-01-23 11:14:13
有个朋友问到,如何在空间不是很富裕的情况,把文件从一个分区tar到另外一个分区,其实还有很多办法的,使用管道命令就可以实现如:#tar -cvf- home |(cd /datavg35; tar -xvf -) ---把home文件打包并解压到/datavg35下;这里我们又想到另外一个问题,把tar的文件传输到另外一台服务器上(个人感觉这个用处对于大.........【阅读全文】