首页 > 技术文章 > Cannot find ./catalina.sh The file is absent or does not have execute permission This file is nee

cx-code 2018-11-21 16:46 原文

从tomcat官网上下载了apache-tomcat-5.5.36.zip,在window xp系统里面解压以后,直接放在了linux服务器上。

进入tomcat/bin目录,执行启动的时候出现如下错误:

[root@test bin]# ./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启动成功
---------------------

原文:https://blog.csdn.net/home_zhang/article/details/8178471

推荐阅读