Chinaunix

标题: fedora下安装tomcat问题 [打印本页]

作者: bhdgx    时间: 2008-01-18 00:02
标题: fedora下安装tomcat问题
我在fedora下安装tomcat遇到如下问题:
运行startup.sh后提示
Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
At least one of these environment variable is needed to run this program

已经安装了JDK6.0,并且环境变量已经设置了,各种java工具都可以运行,环境变量是在~/.bashrc中设定的,要安装tomcat6
.bashrc中的配置为:
  1. # .bashrc

  2. # User specific aliases and functions

  3. alias rm='rm -i'
  4. alias cp='cp -i'
  5. alias mv='mv -i'

  6. # Source global definitions
  7. if [ -f /etc/bashrc ]; then
  8.         . /etc/bashrc
  9. fi

  10. JAVA_HOME=/usr/local/java
  11. PATH=$JAVA_HOME/bin:$PATH
  12. export PATH
复制代码



请问下,我的配置是不是正确的,或者是tomcat还不支持JDK6.0啊

[ 本帖最后由 bhdgx 于 2008-1-18 00:04 编辑 ]
作者: ports    时间: 2008-01-18 00:08
配置到tomcat的启动文件里面。
作者: ports    时间: 2008-01-18 00:21
如果你的tomcat是作为服务器启动的话,
配置到tomcat.conf里面。

我以前配置的/etc/tomcat.conf,大概两年前吧。

  1. # tomcat5 service configuration file
  2. # $Id: tomcat.conf 12 2006-03-22 13:00:43Z root $

  3. # you could also override JAVA_HOME here
  4. # Where your java installation lives
  5. JAVA_HOME="/opt/java"
  6. TOMCAT_HOME="/opt/tomcat"
  7. # You can pass some parameters to java
  8. # here if you wish to
  9. #JAVA_OPTS="-Xminf0.1 -Xmaxf0.3"

  10. # Where your tomcat installation lives
  11. # That change from previous RPM where TOMCAT_HOME
  12. # used to be /var/tomcat.
  13. # Now /var/tomcat will be the base for webapps only
  14. CATALINA_HOME="$TOMCAT_HOME"
  15. CATALINA_TMPDIR="$TOMCAT_HOME"/temp
  16. JASPER_HOME="$TOMCAT_HOME"
  17. JAVA_ENDORSED_DIRS="$TOMCAT_HOME"/common/endorsed

  18. # What user should run tomcat
  19. TOMCAT_USER="root"

  20. # You can change your tomcat locale here
  21. #LANG=en_US

  22. # Time to wait in seconds, before killing process
  23. SHUTDOWN_WAIT=30

  24. # Set the TOMCAT_PID location
  25. CATALINA_PID="/var/run/tomcat.pid"

  26. # If you wish to further customize your tomcat environment,
  27. # put your own definitions here
  28. # (i.e. LD_LIBRARY_PATH for some jdbc drivers)
  29. # Just do not forget to export them :)

复制代码



/etc/init.d/tomcat


  1. #!/bin/sh
  2. #$Id: tomcat.init 13 2006-03-22 13:02:03Z root $
  3. #
  4. # Startup script for Tomcat 5.5, the Apache Servlet Engine
  5. #
  6. # chkconfig: - 80 20
  7. # description: Tomcat 5.0 is the Apache Servlet Engine RI for Servlet 2.4/JSP 2.0
  8. # processname: tomcat
  9. # pidfile: /var/run/tomcat.pid
  10. # config:  /etc/tomcat.conf
  11. #
  12. # Source function library.
  13. if [ -x /etc/rc.d/init.d/functions ]; then
  14. . /etc/rc.d/init.d/functions
  15. fi

  16. # Get Tomcat config
  17. TOMCAT_CFG="/etc/tomcat.conf"

  18. [ -r "${TOMCAT_CFG}" ] && . "${TOMCAT_CFG}"
  19. export JAVA_HOME=$JAVA_HOME

  20. # Path to the tomcat launch script (direct don't use wrapper)
  21. START_TOMCAT=${TOMCAT_HOME}/bin/startup.sh
  22. STOP_TOMCAT=${TOMCAT_HOME}/bin/shutdown.sh

  23. # Tomcat name
  24. TOMCAT_PROG=tomcat

  25. RETVAL=0

  26. # See how we were called.
  27. start() {
  28.     echo -n "Starting ${TOMCAT_PROG}: "

  29.         if [ -f /var/lock/subsys/tomcat ] ; then
  30.                 if [ -f ${CATALINA_PID} ]; then
  31.                                  read kpid < ${CATALINA_PID}
  32.                          if checkpid ${kpid} 2>&1; then
  33.                                      echo "process allready running"
  34.                                      return -1
  35.                          else
  36.                                      echo "lock file found but no process running for pid ${kpid}, continuing"
  37.                         fi
  38.                 fi
  39.         fi

  40.         if [ -x /etc/rc.d/init.d/functions ]; then
  41.                 daemon --user ${TOMCAT_USER} ${START_TOMCAT}
  42.             else
  43.                 su - ${TOMCAT_USER} -c ${START_TOMCAT}
  44.             fi

  45.             RETVAL=$?
  46.             echo
  47.             [ ${RETVAL} = 0 ] && touch /var/lock/subsys/tomcat
  48.             return ${RETVAL}
  49. }

  50. stop() {
  51.     echo -n "Stopping ${TOMCAT_PROG}: "

  52.     if [ -f /var/lock/subsys/tomcat ] ; then
  53.       if [ -x /etc/rc.d/init.d/functions ]; then
  54.           daemon --user ${TOMCAT_USER} ${STOP_TOMCAT}
  55.       else
  56.           su - ${TOMCAT_USER} -c ${STOP_TOMCAT}
  57.       fi

  58.       RETVAL=$?

  59.       if [ ${RETVAL} = 0 ]; then
  60.         count=0;

  61.         if [ -f ${CATALINA_PID} ]; then

  62.             read kpid < ${CATALINA_PID}
  63.             let kwait=${SHUTDOWN_WAIT}

  64.             until [ `ps --pid ${kpid} | grep -c ${kpid}` = '0' ] || [ ${count} -gt ${kwait} ]
  65.             do
  66.                 echo "waiting for processes to exit";
  67.                 sleep 1
  68.                 let count=${count}+1;
  69.             done

  70.             if [ ${count} -gt ${kwait} ]; then
  71.                 echo "killing processes which didn't stop after ${SHUTDOWN_WAIT} seconds"
  72.                 kill -9 ${kpid}
  73.             fi
  74.         fi
  75.    
  76.                 rm -f /var/lock/subsys/tomcat ${CATALINA_PID}
  77.     fi
  78.     else echo "Lock file(subsys) not found ..."
  79.         exit 1
  80.     fi

  81. }

  82. # See how we were called.

  83. case "$1" in
  84.   start)
  85.         start
  86.         ;;

  87.   stop)
  88.         stop
  89.         ;;

  90.   status)
  91.         if [ -f ${CATALINA_PID} ]&&checkpid `cat ${CATALINA_PID}`;
  92.         then
  93.                 echo "tomcat (pid `cat ${CATALINA_PID}`) is running..."
  94.         else
  95.                 echo "tomcat is not running..."
  96.                 exit 1
  97.         fi
  98.         ;;

  99.   restart)
  100.         stop
  101.         sleep 2       
  102.         start
  103.         ;;

  104.   condrestart)
  105.         if [ -f ${CATALINA_PID} ] ;
  106.         then
  107.                 stop
  108.                 start
  109.         fi
  110.         ;;

  111.   *)
  112.         echo "Usage: ${TOMCAT_PROG} {start|stop|restart|condrestart}"
  113.         exit 1

  114. esac

  115. exit ${RETVAL}
复制代码


脚本稍微修改一下可以用于redhat,fedora应该也没有问题。
作者: bhdgx    时间: 2008-01-18 10:51
多谢楼上的,问题解决了。
我是在.bashrc文件中设置了CATALINA_HOME就可以了




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2