症状: 使用IOCP开发的SSLSpider(SSL证书扫描服务)运行一会后(4000并发),系统的一个svchost.exe一直满一个CPU内核(共4核)。分析: 此进程运行了4个服务:停止WinRM、Dnscache都没用,停止NlaSvc超时了,应该是这货在作怪,Google。。。真的是它.....
分类:
其他好文 时间:
2014-07-07 09:45:22
阅读次数:
253
1.设置输出后缀set(CMAKE_DEBUG_POSTFIX "d")2.设置输出目录set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINA...
分类:
其他好文 时间:
2014-07-07 09:31:04
阅读次数:
1031
1,MySQL建库语句比较简单,一句话:1 create database tppamltest32,创建用户及授权:1 insert into mysql.user(Host,User,Password,ssl_cipher,x509_issuer,x509_subject) values("lo...
分类:
数据库 时间:
2014-07-07 09:02:47
阅读次数:
295
当访问启用SSL资源的时候,会出现\"did you forget to enable it when you configured PHP\"错误提示,从提示我们可以看出肯定是php.ini中没有配置好SSL模块。打开php.ini找到extension=php_openssl.dll,取消注释在...
分类:
Web程序 时间:
2014-07-03 23:03:36
阅读次数:
322
import java.util.Properties;import javax.mail.BodyPart;import javax.mail.Message;import javax.mail.Multipart;import javax.mail.Session;import javax.ma...
分类:
编程语言 时间:
2014-07-02 17:21:26
阅读次数:
206
#!/usr/bin/pythonimportMySQLdbdefnew_mail_mysql(ak):printakconn=MySQLdb.connect(host=‘m3306.sae.sina.com.cn‘,user=‘sae_ol‘,passwd=‘7b149edb22ae7526‘,db=‘sae‘,port=3306)cur=conn.cursor()sql="selectnamefromappwhereaccesskey=‘%s‘"%akcur.execute(sql)app_name=cu..
分类:
数据库 时间:
2014-07-02 16:14:12
阅读次数:
285
postfix_编译时make:***[xsasl_cyrus_server.o]Error1make:***[update]
//如果编译出错,检查出错情况,一般是有包忘了装,要不是参数路径错误;
【注释】:
xsasl_cyrus_server.c:598:error:‘SASL_OK‘undeclared(firstuseinthisfunction)
xsasl_cyrus_server.c:600:warning:fo..
分类:
其他好文 时间:
2014-07-02 06:24:31
阅读次数:
1272
一、安装前的准备工作邮件依赖于DNS系统,所以安装postfix之前,要把DNS给弄好。如果系统有sendmail,需要把sendmail关掉#servicesendmailstop
#chkconfigsendmailoff由于是编译安装postfix,所以如果有rpm的postfix,要删除掉,并且把postfix用户等信息也删除掉。因为我后面要..
分类:
其他好文 时间:
2014-07-02 06:21:07
阅读次数:
283