English 中文(简体)
in湖的歌舞厅 14
原标题:Running Tomcat in fedora 14
  • 时间:2011-10-31 07:36:41
  •  标签:
  • java
  • tomcat

I downloaded and installed tomcat in my system(fedora 14) and when I try to run tomcat I get an error, please tell me where could be wrong, following is my .bash_profile settings

# User specific environment and startup programs
export PATH=$PATH:/usr/bin

#java 1.7
export JAVA_HOME=/home/harsha/Applications/jdk1.7.0
export JDK_HOME=/home/harsha/Applications/jdk1.7.0
export JRE_HOME=/home/harsha/Applications/jdk1.7.0

#maven
export M2_HOME=/home/harsha/Applications/apache-maven-2.2.1
export M2=$M2_HOME/bin

#Ant
export ANT_HOME=/home/harsha/installedApps/apache-ant-1.8.2/

#tomcat
export CATALINA_BASE=/home/harsha/Applications/apache-tomcat-7.0.22/
export CATALINA_HOME=/home/harsha/Applicaations/apache-tomcat-7.0.22/
export CATALINA_TMPDIR=/home/harsha/Applications/apache-tomcat-7.0.22/temp



export PATH=$HOME/bin:$M2:$JAVA_HOME/bin:$JDK_HOME/bin:$JRE_HOME/bin:$PATH

以及当我尝试运行/启动时,我会发现错误。

Cannot find /home/harsha/Applications/apache-tomcat-7.0.22//bin/setclasspath.sh
This file is needed to run this program
问题回答

删除<代码>中最后斜线 CATALINA_ factors.





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签