Search code examples
tomcattomcat6tomcat7

Why I can not start my tomcat from command line?


I downloaded tomcat version 7.0.16 binary distributions core tar.gz from tomcat's official website to my ubuntu machine, then extracted the downloaded file.

Then, I used terminal command to specify the path to ~/apache-tomcat-7.0.16/bin$ , then I entered startup command, but I have got 'startup: command not found' message, but when I used linux command ls, there were startup.bat and startup.sh under bin/.

I also tried to enter startup.bat and startup.sh, the same message returned. Why I can not start my tomcat v7 from ubuntu terminal window??


Solution

  • If you're trying to run startup.sh from the directory that contains it, you'll need to prefix the name with ./ - the current directory is not on the PATH by default. Also, you'll need the .sh extension.

    So either:

    ~/apache-tomcat-7/bin$ ./startup.sh
    

    Or:

    ~/apache-tomcat-7$ bin/startup.sh