代码改变世界

重启redis报错:Waiting for Redis to shutdown

2016-12-14 15:22 by abce, 7028 阅读, 1 推荐, 收藏,
摘要:重启redis,发现一直报:Waiting for Redis to shutdown 因为配置了密码验证,而在restart的时候并没有配置密码。 解决方法:1.修改redis服务脚本,加入如下所示的信息即可: 阅读全文

Tomcat8启动报there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache

2016-12-14 14:13 by abce, 13985 阅读, 0 推荐, 收藏,
摘要:修改方法: tomcat 中context.xml 配置文件加入 <Resources cachingAllowed="true" cacheMaxSize="100000" /> 阅读全文

EBS安装过程报错,oracle.apps.fnd.txk.config.ProcessStateException: FileSys OS COMMAND Failed : Exit=2 See log for details.

2016-12-14 13:34 by abce, 1108 阅读, 0 推荐, 收藏,
摘要:日志: 原因: 操作系统少安装了几个rpm包。安装好对应的rpm包之后重新安装成功 阅读全文

CentOS系统将UTC时间修改为CST时间

2016-12-13 20:11 by abce, 13902 阅读, 0 推荐, 收藏,
摘要:1.编辑时间配置文件 2.linux的时区设置为上海时区 3.与xxxx对准时间 4.设置硬件时间和系统时间一致并校准 经过以上步骤,系统时间和计算机硬件时间都是cst时间了,并且都是上海时区。 注:CentOS Linux默认的bios时间是utc时间 阅读全文

Tomcat启动时报错,Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext

2016-12-13 19:59 by abce, 108614 阅读, 4 推荐, 收藏,
摘要:解决方法: 修改tomcat配置文件catalina.properties 阅读全文

Fatal Error: TXK Install Service oracle.apps.fnd.txk.config.ProcessStateException: OUI process failed : Exit=255 See log for details

2016-12-09 12:52 by abce, 1800 阅读, 0 推荐, 收藏,
摘要:安装EBS的时候,database pre-install checks检查报警,显示"!" 一开始忽略了该报警,继续安装。在post-install checks的时候又报了错误: 查看12091208.log: 查看RDBMS $ORACLE_HOME/temp/$CONTEXT_NAME/lo 阅读全文

here was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache

2016-12-09 11:24 by abce, 4438 阅读, 0 推荐, 收藏,
摘要:tomcat重启后报以下错误: 因为系统要加载不少图片,而tomcat8以上对resource采取了cache,而默认的大小是10M. 可能超过了此限制,那么tomcat是启动不起来了。 解决的办法是在context.xml中调大缓存即可,具体如下: 加在</context>前就行。 阅读全文

python - 文件迭代

2016-11-23 13:44 by abce, 250 阅读, 0 推荐, 收藏,
摘要:>>> f=open('passwd','r')>>> for lines in f:... print lines 不再需要像老版本中那样调用readline(): 阅读全文

Python Decorator 和函数式编程

2016-11-16 13:38 by abce, 206 阅读, 0 推荐, 收藏,
摘要:看到一篇翻译不错的文章,原文链接: Python Decorator 和函数式编程 阅读全文

ORA-25153: Temporary Tablespace is Empty

2016-10-25 23:07 by abce, 1347 阅读, 0 推荐, 收藏,
摘要:在一测试环境做测试的时候发生以下错误: 查看临时表空间:temp表空间是处于online状态 但是没有发现临时文件: 查看物理文件:文理文件仍然存在 从物理文件的时间戳可以看出temp文件最后一次访问时间 根据时间查看alert日志,发现在对应的时间做个重建控制文件操作,并且在重建控制完成后启动数据 阅读全文
上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 123 下一页