当sudo chmod 755 /Library/Tomcat9/bin/*.sh发生错误时

时间:2017-01-31 13:15:56

标签: java tomcat

这是我的Tomcat,我将其复制到~/Library目录下:

enter image description here

当我修改权限目录时使用:

sudo chmod 755 /Library/Tomcat9/bin/*.sh 

出现问题:

  

chmod:/Library/Tomcat9/bin/*.sh:没有这样的文件或目录

问题的截图:

enter image description here

1 个答案:

答案 0 :(得分:1)

chmod 755 /Library/{filename}尝试更改根目录filenameLibrary/的权限。在您的情况下,根目录中没有文件夹Library,这就是您收到错误No such file or directory的原因。

我会这样做:

cd ~/Library/Tomcat9/bin     #change to the Library directory in your Home-Folder and further to Tomcat9/bin
sudo chmod 755 startup.sh    #inside /bin change the permission of the startup script
./startup.sh                 #execute the file