这是我的Tomcat,我将其复制到~/Library
目录下:
当我修改权限目录时使用:
sudo chmod 755 /Library/Tomcat9/bin/*.sh
出现问题:
chmod:/Library/Tomcat9/bin/*.sh:没有这样的文件或目录
问题的截图:
答案 0 :(得分:1)
chmod 755 /Library/{filename}
尝试更改根目录filename
内Library
中/
的权限。在您的情况下,根目录中没有文件夹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