在启动tomcat的过程中,控制台报以下错误
An incompatible version [1.2.12] of the APR based
Apache Tomcat Native library is installed, while Tomcat requires version [1.2.14]
这是tomcat在安装本地APR库时的版本不兼容所导致的,这里显示版本最好为1.2.14,不过这个错误不影响程序的正常运行。
不过在程序员眼中error
是挺辣眼睛的,在网上有很多处理办法,其实我觉得最简单实用的就是下载一个新的版本。
把tcnative-1.dll
文件复制到jdk的下的bin文件夹下,和jre下的bin文件夹下
下载地址:http://tomcat.apache.org/download-native.cgi
window系统就下载这个
下载后可能发现的文件名有win32以为就只有32位的,其实不是, 下载完后解压缩打开bin文件夹,里面有32位的
tcnative-1.dll
和64位的tcnative-1.dll
假如你的电脑是64位,却用了32位的
tcnative-1.dll
,会报如下错误Can't load IA 32-bit .dll on a AMD 64-bit platform
把
tcnative-1.dll
文件复制到jdk的下的bin文件夹下,和jre下的bin文件夹下,然后再次启动程序发现错误不再提示了