Linux中Tomcat启动出现问题

           今天,在Linux的环境下启动Tomcat的时候,一直报错,很纳闷,网站上到处谷歌,百度,最终还是找到了解决方案,所以把成果记下来,以方便后来的人员学习

           首先看下报错代码: 

                    

Cannot find /usr/local/tomcat1/bin/setclasspath.sh
This file is needed to run this program
             这个可能是没有在 /etc/profile 中配置环境,这是第一种可能;如果是这种情况的话,可以这样做:
vi  /etc/profile
             并在文件末尾加上

export CATALINA_HOME=/usr/local/tomcat
export CATALINA_BASE=/usr/local/tomcat
            最后  source  /etc/profile 使刚才的配置生效就可以了;


        第二种可能,是bin目录下的文件权限不够,11一下,然后给bin目录下的所有文件增加执行权限:

              chmod a+x  *


     然后的话,再启动一下Tomcat试试,

            /usr/local/tomcat/bin/startup.sh

     地址栏中输入“ htttp:// IP地址 :8080”,如果能看到汤姆猫,说明就成功了!

       

你可能感兴趣的:(tomcat,linux,centos,J2EE)