03 2016 档案

摘要:今天服务器遇到了一个很熟悉的问题 输入 #mysql -u root -p ERROR 2002 (HY000):Can't connect to local MySQL server 随即上网找寻答案 根据大家提供的方法我逐一尝试 方案1. 1.#ps -A|grep mysql 显示类似: 18 阅读全文
posted @ 2016-03-31 15:20 你且浅笑相安 阅读(362) 评论(0) 推荐(0) 编辑
摘要:源码下载地址:http://dist.schmorp.de/libev/ libev是一个高性能的事件循环库,比libevent库的性能要好。 安装: 设置环境变量: 没有接触过libev的新手一般对概念也是比较蒙的,我也不多做介绍,教你如何快速上手 对比说明吧! 示例一:不使用libev 说明:这 阅读全文
posted @ 2016-03-31 14:54 你且浅笑相安 阅读(3743) 评论(0) 推荐(0) 编辑
摘要:安装clamav 之前还需要安装zlib 要不然安装过程中会报错的. tar -zxvf zlib-1.2.3.tar.gz cd zlib-1.2.3 ./configure make make install (zlib 编译安装) 因为我用源码包安装,需要手动创建clamav 用户 group 阅读全文
posted @ 2016-03-29 09:11 你且浅笑相安 阅读(1874) 评论(0) 推荐(0) 编辑
摘要:mysql 删除语句 :delete from 表名 where 条件; 例如 delete from tbuserinfo where id= 2; mysql 查询语句 :select * 列名 from 表名 where 条件; mysql 模糊查询 : SELECT * FROM 表名 WH 阅读全文
posted @ 2016-03-20 10:46 你且浅笑相安 阅读(127) 评论(0) 推荐(0) 编辑
摘要:1 #ifndef POLARSSL_DES_H 2 #define POLARSSL_DES_H 3 4 #define DES_ENCRYPT 1 5 #define DES_DECRYPT 0 6 7 #define POLARSSL_ERR_DES_INVALID_INPUT_LENGTH -0... 阅读全文
posted @ 2016-03-20 09:39 你且浅笑相安 阅读(3430) 评论(0) 推荐(0) 编辑
摘要:模式0:balance-rr 模式1:active-backup 模式2:balance-xor 模式3:broadcast 模式4:802.3ad 模式5:balance-tlb 模式6:balance-alb 打开文件: /etc/modprobe.conf 添加 alias bond1 bon 阅读全文
posted @ 2016-03-19 17:20 你且浅笑相安 阅读(479) 评论(0) 推荐(0) 编辑
摘要:openssl pkcs12 -export -inkey 1.key -in 1.pem -passin pass:123456 -passout pass:123456 -out 1.p12 证书:openssl pkcs12 -in mysite.p12 -nokeys -passin pas 阅读全文
posted @ 2016-03-19 16:54 你且浅笑相安 阅读(1791) 评论(0) 推荐(0) 编辑