我在服务器上使用putty停止tomcat服务时出错。
错误是
`[root@vps ~]# service tomcat7 stop
Shutting down Tomcat7:
Using CATALINA_BASE: /usr/tomcat7
Using CATALINA_HOME: /usr/tomcat7
Using CATALINA_TMPDIR: /usr/tomcat7/temp
Using JRE_HOME: /usr
Using CLASSPATH: /usr/tomcat7/bin/bootstrap.jar
/usr/tom
我的Tomcat服务器已经运行了几天,但是我无法正常关闭它,因为在执行shutdown.sh时,我得到了以下错误:
# root@iZ94hjppdqzZ:~/projects/taolijie# cat hs_err_pid5519.log
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 1073741824 bytes for committing reserved memory.
# P
我已经在linux上安装了java和tomcat appache服务器。当我打算在linux服务器上使用./startup.sh命令启动tomcat时,它给出的输出为
Using CATALINA_BASE: /usr/src/apache-tomcat-5.5.28
Using CATALINA_HOME: /usr/src/apache-tomcat-5.5.28
Using CATALINA_TMPDIR: /usr/src/apache-tomcat-5.5.28/temp
Using JRE_HOME: /usr/src/jdk1.6.0_16
Using CL
我正在运行两个web应用程序实例的Tomcat,这两个应用程序的开发是独立的。当我启动tomcat服务器并开始访问应用程序时,它要么抛出Perm Gen OOM异常,要么抛出Heap Space OOM异常。这两个应用程序使用相同的jars,这些jars被捆绑在webapp各自的lib文件夹中。perm gen是由类的重复加载引起的吗?如何避免Perm Gen和Heap空间异常?
编辑:我希望在这个场景中遵循最佳实践。请给我同样的建议。
注意:我在一台具有12 gb内存的2008服务器上运行tomcat。该服务器还托管其他tomcat服务器和数据库的MSSQL服务器。