Cannot find ./catalina.sh The file is absent or does not have execute permission This file is needed

从Linux上下载出来catalina.sh,修改了一些设置之后重新上传到tomcat的bin目录下。

然后cd到tomcat的bin目录下执行
: sh startup.sh ,查看日志发现无反应;
重新执行
: sh shutdown.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 startup.sh

成功

你可能感兴趣的:(问题整理,linux,tomcat,服务器)