在Linux环境下运行Tomcat,当执行 ./startup.sh 命令时报以下提示
Cannot find ./catalina.sh
The file is absent or does not have execute permission
This file is needed to run this program
没有执行权限运行该程序
在tomcat 的bin目录下 执行这条命令
chmod +x *.sh
再次执行 sh catalina.sh通过,然后用sh startup.sh启动成功。