您的位置:首页 > 其它

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

2017-02-10 15:45 971 查看
从tomcat官网上下载了apache-tomcat-7.zip,在window 7系统里面解压以后,直接放在了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启动成功

如下:

[root@test bin]# chmod +x *.sh
[root@test bin]# sh catalina.sh
Using CATALINA_BASE: /usr/local/duckling/tomcat-5.5.36
Using CATALINA_HOME: /usr/local/duckling/tomcat-5.5.36
Using CATALINA_TMPDIR: /usr/local/duckling/tomcat-5.5.36/temp
Using JRE_HOME: /usr/Java/jdk1.7.0
Using CLASSPATH: /usr/local/duckling/tomcat-5.5.36/bin/bootstrap.jar
Usage: catalina.sh ( commands ... )
commands:
debug Start Catalina in a debugger
debug -security Debug Catalina with a security manager
jpda start Start Catalina under JPDA debugger
run Start Catalina in the current window
run -security Start in the current window with security manager
start Start Catalina in a separate window
start -security Start in a separate window with security manager
stop Stop Catalina
stop -force Stop Catalina (followed by kill -KILL)
version What version of tomcat are you running?
[root@test bin]# sh startup.sh
Using CATALINA_BASE: /usr/local/duckling/tomcat-5.5.36
Using CATALINA_HOME: /usr/local/duckling/tomcat-5.5.36
Using CATALINA_TMPDIR: /usr/local/duckling/tomcat-5.5.36/temp
Using JRE_HOME: /usr/java/jdk1.7.0
Using CLASSPATH: /usr/local/duckling/tomcat-5.5.36/bin/bootstrap.jar
[root@test bin]#
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐