上述错误是在将Web应用部署到Tomcat,最后一步 右键单击选择Start的时候报错,原因是我在启动Tomcat之前,就已经运行了Tomcat,导致端口被占用。将之前的Tomcat关闭重新启动就可以了。 解决方法参考网址:http://blog.csdn.net/xinxin19881112/ar ...
分类:
其他好文 时间:
2017-08-29 21:51:25
阅读次数:
928
旋转链表函数 public ListNode reverse(ListNode head) { ListNode prev = null; while (head != null) { ListNode next = head.next; head.next = prev; prev = head; ...
分类:
其他好文 时间:
2017-08-26 21:23:39
阅读次数:
158
最近在进行一些实验环境的配置,最终通过双系统实现了多系统的管理,而不仅限于虚拟机的方式。以此方式成功安装了Windows8.1 Pro和Windows 10,原文在此。 在此基础上进一步安装Ubuntu16.04。鉴于现如今对于安装系统的优化已经较为成熟,安装过程较为简单或资料充足,所以主要的问题集 ...
启动时报错信息:StartingMySQL...ERROR!TheserverquitwithoutupdatingPIDfile(/usr/local/mysql/data/qkzhi-appzookeeper-1.novalocal.pid).2017-08-25T09:14:20.974876Zmysqld_safemysqldfrompidfile/usr/local/mysql/data/qkzhi-appzookeeper-2.novalocal.pidended解决方法..
分类:
数据库 时间:
2017-08-26 04:52:54
阅读次数:
230
配置文件filter元素报错解决办法:解决办法为:将“http://www.springmodules.org/schema/cache/springmodules-cache.xsd http://www.springmodules.org/schema/cache/springmodules-e ...
分类:
其他好文 时间:
2017-08-23 13:26:53
阅读次数:
418
"> My JSP 'a.jsp' starting page --> 保存Cookie 0 存活时间以秒计算 --%> "> My JSP 'b.jsp' ... ...
分类:
其他好文 时间:
2017-08-21 09:53:45
阅读次数:
130
P1339 [USACO09OCT]热浪Heat Wave 题目描述 The good folks in Texas are having a heatwave this summer. Their Texas Longhorn cows make for good eating but are n ...
分类:
其他好文 时间:
2017-08-19 17:07:15
阅读次数:
201
重启mysql提示MySQL server PID file could not be found! Starting MySQL...The server quit without updating PID file (/usr/local/mysql/data/rekfan.pid). 我只能呵 ...
分类:
数据库 时间:
2017-08-18 20:42:04
阅读次数:
309
Oracle RAC安装grid到最后时第二个节点执行root.sh报Failed to create keys in the OLR, rc = 127, Message:问题处理 ...
分类:
其他好文 时间:
2017-08-18 20:14:29
阅读次数:
156
在/etc/yum.repos.d/目录下创建一个源配置文件nginx.repo cd /etc/yum.repos.d/ vim nginx.repo 填写如下内容: 【nginx】 name=nginx repo baseurl=http://nginx.org/packages/centos/ ...
分类:
其他好文 时间:
2017-08-18 16:17:39
阅读次数:
129