Last active
January 5, 2016 01:05
-
-
Save ishtaka/0e24bdde815d68220132 to your computer and use it in GitHub Desktop.
[Tomcat]Tomcat環境変数
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /etc/profile.d/tomcat.sh | |
| # Java | |
| export JAVA_HOME=/usr/java/jdk1.8.0 | |
| export PATH=$PATH:$JAVA_HOME/bin | |
| export CLASSPATH=.:$JAVA_HOME/jre/lib:$JAVA_HOME/lib:$JAVA_HOME/lib/tools.jar | |
| # Tomcat | |
| export JRE_HOME=$JAVA_HOME | |
| export TOMCAT_HOME=/usr/local/tomcat | |
| export CATALINA_HOME=/usr/local/tomcat | |
| export CLASSPATH=$CLASSPATH:$CATALINA_HOME/common/lib |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment