linux下启动tomcat出现“This file is needed to run this program ”

使用sh startup.sh启动tomcat 出现This file is needed to run this program  

原因.sh文件都不是可执行文件,于是找到命令:

chmod +x *.sh  


chmod +x *.sh再次执行 sh catalina.sh通过,然后用sh startup.sh成功启动

原文地址:https://www.cnblogs.com/shihaiming/p/5896009.html