启动tomcat cd /home/tomcat/binsh startup.shCannot find bin/catalina.shThe file is absent or does not have execute permissionThis file is needed to run this program原因: 是因为没有权限解决 : chmod 77 ...
linux 下启动tomcat# sh startup.sh提示Cannot find ./catalina.shThe file is absent or does not have execute permissionThis file is needed to run this program解决办法:给.sh文件授权# chmod +x *.sh 再启动 ...