还是采用静默安装,手工建库完成后。在安装的OEM的时候一直报这个错误。这里稍微记载以下解决方案:Database connection through listener failed. Fix the error and run EM Configuration Assistant again.So...
分类:
数据库 时间:
2014-10-29 12:51:54
阅读次数:
241
1. redis.conf 配置参数:
#是否作为守护进程运行
daemonize yes
#如以后台进程运行,则需指定一个pid,默认为/var/run/redis.pid
pidfile redis.pid
#绑定主机IP,默认值为127.0.0.1
#bind 127.0.0.1
#Redis默认监听端口
port 6379
#客户端闲置多少秒后,断开连接,默认为300(秒...
分类:
其他好文 时间:
2014-10-29 09:17:36
阅读次数:
204
callnotifier.java
public void run() {
......
switch (mToneId) {
case TONE_CALL_WAITING:
toneType = ToneGenerator.TONE_SUP_CALL_WAITING;
...
分类:
移动开发 时间:
2014-10-29 09:15:04
阅读次数:
228
AtomicLong can make sure at one time only one thread can use itlock can lock a section of a procedure to ensure that only one thread to run the sectio...
分类:
编程语言 时间:
2014-10-29 00:01:35
阅读次数:
474
1.利用Thread类 new Thread(){ @Override public void run() { try { //延时3秒 Thread.sleep(3000); } catch (InterruptedException e) { e.prin...
分类:
移动开发 时间:
2014-10-28 21:20:43
阅读次数:
171
1、在hudson中创建一个job,Jemter_xianqingye2.2、在hudson的job目录下,拷入jmeter。3、在ant的配置文件中修改相应的值:这个run的target中设置要运行的jmeter的脚本,即.jmx文件,和jmeter生成的报告.jtl文件在report的targe...
分类:
其他好文 时间:
2014-10-28 19:49:56
阅读次数:
275
安装完libevent之后[root@wangnginx-1.6.0]#./configure--conf-path=/etc/nginx/nginx.conf--error-log-path=/var/log/nginx/error.log--http-log-path=/var/log/nginx/access.log--pid-path=/var/run/nginx/nginx.pid--lock-path=/var/lock/nginx.lock--user=nginx--group=ngi..
分类:
其他好文 时间:
2014-10-28 18:05:45
阅读次数:
282
To Install, ensure that you have NodeJS installed, then open your commandline and run the following:$ sudo npm install -g phonegap Once ins...
分类:
其他好文 时间:
2014-10-28 17:21:52
阅读次数:
183
一:首先man.go,整个程序的入口func main() { beego.Run()}然后beego.run()代码// Run beego application.// beego.Run() default run on HttpPort// beego.Run(":8089")// b...
分类:
其他好文 时间:
2014-10-28 17:06:33
阅读次数:
277
class Program { static void Main(string[] args) { Run(); } public static async void Run() ...
分类:
编程语言 时间:
2014-10-28 13:33:37
阅读次数:
155