1 Object-auditor 的启动
Object-auditor的启动和object-replicator的启动过程是一样的,首先是执行启动脚本
swift-init object-auditor start
启动脚本会运行swift源码bin目录下的
if __name__ == '__main__':
parser = OptionParser("%prog CONFIG...
分类:
其他好文 时间:
2014-05-16 02:50:59
阅读次数:
332
问题1
[root@localhost ~]# gluster peer status
Connection failed. Please check if gluster daemon is operational.
原因:未开启glusterd服务
解决方法:开启glusterd服务
/etc/init.d/glusterd start
问题2
[root@loc...
分类:
其他好文 时间:
2014-05-16 02:50:16
阅读次数:
391
1.定义UITexture二维数组public UITexture[,]
m_UITexture;2.在 void start() 中分配内存m_UITexture = new UITexture[30,
50];3.遍历排列的UITexture//用UITexture数组获取UITexture ....
分类:
其他好文 时间:
2014-05-16 01:17:09
阅读次数:
316
今天在加载https站点的时候遇到如下的错误问题。所以对自己之前写的iOS内嵌webview做了一些修改,可以让它加载http站点也可以让它加载https站点、
下面是我加载https站点的时候出现的错误。
error:
NSURLConnection/CFURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -98...
分类:
移动开发 时间:
2014-05-15 23:42:56
阅读次数:
688
服务器端配置 修改/etc/ssh/sshd_configTCPKeepAlive
yes?ClientAliveInterval 60客户端配置 修改/etc/ssh/ssh_configTCPKeepAlive
yesServerAliveInterval 60
分类:
其他好文 时间:
2014-05-15 21:55:36
阅读次数:
396
这是因为JDK配置错误所导致的现象。一般说来,新购笔记本会预装64位的windows系统,而在网上下载软件时,32位会优先出现在页面中(现在来说是这个情况,但我认为未来64位会越来越普及)。如果你是64位的系统,却安装了32位的JDK,就会导致上面的情况。解决办法如下:卸载掉原来安装的32位的JDK...
分类:
系统相关 时间:
2014-05-15 21:51:27
阅读次数:
455
启动:net start mySql; 进入:mysql -u root -p/mysql
-h localhost -u root -p databaseName; 列出数据库:show databases; 选择数据库:use
databaseName; 列出表格:show tables...
分类:
数据库 时间:
2014-05-15 21:36:56
阅读次数:
366
最近开发那边发现有一个SSH连接的问题,每次他从他的虚拟机连接我们这边服务器的时候,都会出现验证速度慢,要经过很长时间的没响应过程。研究了一下,发现是这样:SSH的配置文件sshd_config里有这么一个参数:vi
/etc/ssh/sshd_config将GSSAPIAuthentication...
分类:
其他好文 时间:
2014-05-15 21:23:01
阅读次数:
227
在eclipse启动tomcat时遇到超时45秒的问题:
Server Tomcat v7.0 Server at localhost was unable to startwithin 45 seconds. If the server requires more time, try increasingthe timeout in the server editor.
网上解决办法...
分类:
其他好文 时间:
2014-05-15 18:31:36
阅读次数:
242
PHP生成指定大小随机图片 $image_width){ for ($i=$start;
$i<$image_height * 2; $i+=$step) { imageline($img, 0, $i, $i, 0,
$color); }}else{ for ($i=$start; $i<$im....
分类:
Web程序 时间:
2014-05-15 17:42:03
阅读次数:
377