当前位置: 首页 > 工具软件 > is.sh > 使用案例 >

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

海保臣
2023-12-01

现象

在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启动成功。

 类似资料: