`
erntoo
  • 浏览: 30596 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论
  • erntoo: 修改somaxconn该内核参数默认值一般是128,对于负载很 ...
    rpm
文章列表

rpm

rpm -e tcl-8.4.13-6.el5 --allmatches --nodeps
Munin 用户监控服务器负载,硬件使用情况,网络流量情况   服务器端安装 yum install munin munin-node  munin-nginx  varnish   服务器端启动服务 service munin-node start service varnish start spawn-fcgi -s /var/run/munin/fastcgi-graph.sock -U nginx   -u ngi ...
<?php function my_callback_function($param1,$param2) { echo $param1."\t".$param2."\n"; } class A { public static $pro1=1; public static $pro2=array(1=>2); public static $pro3=array(1,2,3); public static $pro4=array(11,22,33); public static $pro5=array(11, ...
#!/usr/bin/expect set host [lindex $argv 0] set user [lindex $argv 1] set port [lindex $argv 2] spawn ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p $port -l $user $host expect -re "password:" { send "123456\r"; } # 保证1s内建立连接成功 sleep 1; #发送命令 send ...
1 Nice to meeet you.  I'm very pleased to meet you. 很高兴认识你。 Pleased to meet you/Good to meet you. 2 You sure look busy. 看你很忙啊。 3 You're as busy as ever. 你还是和一起一样忙。 4 I hope you won't give me a hard time. 希望你不要难为我。 5  I'm afraid I must go now. 恐怕我得走了。 6 That's a shame. 太遗憾了。 7 It was ni ...

网络工程

  基本的网络知识结构
1 Thanks to you ,i finished the work quickly. 多亏有您,工作很快完成了 I'm happy to help.  很高兴能帮上忙  Due to you help,I become stronger than before Because  of your help, 2 Thanks .That helps a lot . 谢谢,这可帮了大忙了 That makes a big difference. That's a big help. 3 I'll extend your deadline two weeks. 截止日期 ...
var fromdatefunction=function(){ var maxdate=" -1d"; if($('#todate').val()) { maxdate=$('#todate').val();} $( "#fromdate" ).datepicker({ changeMonth: true, changeYear:true, //dayNamesMin:["星期日","星期一","星期二","星期三","星期四&qu ...
很长时间没做PHP开发,刚刚在开发过程中发现使用了 Smarty 3.1.14 后,原先写的PHP __autoload 不能使用,查看很久发现这个版本的smary里面使用 spl_autoload_register 已经注册了一个 __autoload vim Smarty.class.php  +83 if (SMARTY_SPL_AUTOLOAD && set_include_path(get_include_path() . PATH_SEPARATOR . SMARTY_SYSPLUGINS_DIR) !== false) { $registere ...
  实战文件:test.log  内容   1840 148990 0000 273839 1841 87999 0001 190432 1842 89306 0001 190433 1843 90431 0002 179591 1844 115357 0003 244693 1845 69873 0004 163991 1846 163991 0002 179541 1847 72279 0005 130333 1848 194204 0006 215442 1849 163973 00 ...
  MySQL的mysqldump工具的基本用法 导出要用到MySQL的mysqldump工具,基本用法是:    shell> mysqldump [OPTIONS] database [tables]    如果你不给定任何表,整个数据库将被导出。    通过执行mysqldump --help,你能得到你mysqldump的版本支持的选项表。    注意,如果你运行mysqldump没有--quick或--opt选项,mysqldump将在导出结果前装载整个结果集到内存中,如果你正在导出一个大的数据库,这将可能是一个问题。    mysqldump支持下列选项:   ...

lftp上传

  #!/bin/bash ### ftp 上传  ### sh ftp.sh folder/file ACCOUNT=xx PASSWD=wTAkj3xx SERVER=60.22.208.142 PORT=21   if [ -d $1 ];then lftp <<! open ${SERVER}:${PORT} user ${ACCOUNT} ${PASSWD} mirror -R $1    close bye ! else lftp <<! open ${SERVER}:${PORT} user ${ACCOUNT} $ ...
  最近给朋友推荐哈mongodb 也很久没有去回顾这些数据库了,下面对mysql和mongodb常用命令做哈对比
述本文对比测试constcache和memcached。评测程序参考memslap实现。评测程序使用介绍命令参数:bench.php -ttype -cconcurrency -mmethod -sserver -nnumber -llength -aamend -i -r参数说明:type。评测类型,目前支持constcache、memcached。concurrency。并发数量 ...

VIM 命令

:qx     开始记录宏,并将结果存入寄存器x q     退出记录模式 @x     播放记录在x寄存器中的宏命令 稍微解释一下,当在normal模式下输入:qx后,你对文本的所有编辑动作将会被记录下来,再次输入q即退出了记录模 式,然后输入@x对刚才记录下来的命令进行重复,此命令后可跟数字,表示要重复多少次,比如@x20,可以重复20次。这个在文本的批处理中是非常有用的。 同时编辑多个文件 在vim众多的插件中,有一个叫minibuffer的插件,就是下面所说的标签页功能了,可以支持同时编辑多个文件。 标签命令 :tabe fn     在一个新的标签页中编辑文件fn gt     切换 ...
Global site tag (gtag.js) - Google Analytics