FileManagement/linux/tomca安装--设置.txt

19 lines
515 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

安装
wget -c http://mirror.bit.edu.cn/apache/tomcat/tomcat-7/v7.0.65/bin/apache-tomcat-7.0.65.tar.gz
tar -xzvf apache-tomcat-7.0.64.tar.gz
配置
Windows下在文件/bin/catalina.batUnix下在文件/bin/catalina.sh的前面增加如下设置
  JAVA_OPTS='-Xms【初始化内存大小】 -Xmx【可以使用的最大内存】'
  需要把这个两个参数值调大。例如:
  set JAVA_OPTS=-Xms256m -Xmx512m
  表示初始化内存为256MB可以使用的最大内存为512MB。
第二种方法: 环境变量中设 变量名JAVA_OPTS 变量值:-Xms512m -Xmx512m