Instalando o Tomcat no ubuntu

0

Eu fiz o download do apache-tomcat-x.x.x.tar.gz do apache. Eu o extraí e configurei o CATALINA_HOME. Já deu permissão para todo o arquivo sh para bin. Ao executar o catalina.sh jpda start, estou recebendo o seguinte erro.

Using CATALINA_BASE:   /home/sitakanta/server/apache-tomcat-6.0.37
Using CATALINA_HOME:   /home/sitakanta/server/apache-tomcat-6.0.37
Using CATALINA_TMPDIR: /home/sitakanta/server/apache-tomcat-6.0.37/temp
Using JRE_HOME:        /opt/jdk1.7.0_71
Using CLASSPATH:       /home/sitakanta/server/apache-tomcat-6.0.37/bin/bootstrap.jar
Using CATALINA_PID:    /home/sitakanta/server/apache-tomcat-6.0.37/tomcat.pid
Usage: catalina.sh ( commands ... )
commands:
  debug             Start Catalina in a debugger
  debug -security   Debug Catalina with a security manager
  jpda start        Start Catalina under JPDA debugger
  run               Start Catalina in the current window
  run -security     Start in the current window with security manager
  start             Start Catalina in a separate window
  start -security   Start in a separate window with security manager
  stop              Stop Catalina, waiting up to 5 seconds for the process to end
  stop n            Stop Catalina, waiting up to n seconds for the process to end
  stop -force       Stop Catalina, wait up to 5 seconds and then use kill -KILL if still running
  stop n -force     Stop Catalina, wait up to n seconds and then use kill -KILL if still running
  version           What version of tomcat are you running?
Note: Waiting for the process to end and use of the -force option require that $CATALINA_PID is defined
    
por SKC... 23.11.2014 / 14:22

1 resposta

2

Use os pacotes do repositório.

Use e instale tomcat7 e você terá um servidor instalado e funcionando. Você também pode querer verificar se o pacote tomcat7-admin , tomcat7-examples e tomcat7-doc está instalado.

Se você quiser apenas desenvolver e executar alguns servidores Tomcat7, basta instalar o pacote tomcat7-user , tomcat7-examples e tomcat7-doc e você poderá criar vários servidores diferentes do Tomcat 7 com o comando tomcat7-instance-create . Consulte /usr/share/doc/tomcat7* para documentação e o man pager para o comando tomcat7-instance-create .

    
por Anders 25.11.2014 / 03:13