代码改变世界

阅读排行榜

TOMCAT 关闭报错:Tomcat did not stop in time. PID file was not removed

2016-07-12 11:05 by abce, 4635 阅读, 收藏,
摘要: 关闭tomcat的时候,报出如下错误信息: 修改方法: 参考原文地址: http://blog.csdn.net/mchdba/article/details/46482499 阅读全文

docker中postgresql的备份和还原

2022-05-10 13:02 by abce, 4576 阅读, 收藏,
摘要: 1.备份 本地主机在docker容器内部执行命令的格式: docker exec <container_name> <your_command> docker容器都是假设所有的文件是在容器卷中的,如果文件不在docker容器中,你需要在本地主机和容器之间传输。 备份容器中的某个数据库 docker 阅读全文

Oracle 11g RAC 第二节点root.sh执行失败后再次执行root.sh

2016-08-01 15:18 by abce, 4533 阅读, 收藏,
摘要: Oracle 11g RAC 第二节点root.sh执行失败后再次执行root.sh前,要先清除之前的crs配置信息 阅读全文

PostgreSQL中的not in、not exists、left join/is null

2021-01-04 16:44 by abce, 4451 阅读, 收藏,
摘要: 哪种方法是找出在一张表中,而不在另一张表中的记录的最佳方法呢? SELECT l.* FROM t_left l LEFT JOIN t_right r ON r.value = l.value WHERE r.value IS NULL; SELECT l.* FROM t_left l WHER 阅读全文

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, 4436 阅读, 收藏,
摘要: tomcat重启后报以下错误: 因为系统要加载不少图片,而tomcat8以上对resource采取了cache,而默认的大小是10M. 可能超过了此限制,那么tomcat是启动不起来了。 解决的办法是在context.xml中调大缓存即可,具体如下: 加在</context>前就行。 阅读全文
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 246 下一页