ant 权限被拒绝问题

发布于 2024-11-09 03:46:18 字数 284 浏览 0 评论 0原文

解压 ant 文件并将其保存到 opt/ 目录并设置路径变量后 到 $ANT_HOME/bin

我在 CentOS 5 上运行了以下命令

ant -version

,但收到以下错误

-bash:/path/opt/apache-ant-1.8.2/bin/ant: Permission denied

是否有我应该设置的某些权限或此问题的一些典型来源?

谢谢!

After extracting and saving the ant files into an opt/ directory and setting the path variable
to $ANT_HOME/bin

I ran the following command on a CentOS 5

ant -version

and I am getting the following error

-bash:/path/opt/apache-ant-1.8.2/bin/ant: Permission denied

Is there some permission I am supposed to set or some typical source of this problem?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ペ泪落弦音 2024-11-16 03:46:18

如果您拥有该文件,请尝试

chmod u+x /path/opt/apache-ant-1.8.2/bin/ant

如果其他人拥有该文件,则 sudo 或成为 root,那么

chmod 755 /path/opt/apache-ant-1.8.2/bin/ant

您需要对该文件具有执行权限;第一个仅向所有者授予执行权限,如果您拥有该文件并且是唯一使用该文件的人,则可能更可取。第二个需要 root 权限,并向所有人授予执行和读取权限,以及所有者的写入权限。

您可以通过运行 ls -l /path/opt/apache-ant-1.8.2/bin/ant 查看文件的当前权限和所有权。

If you own the file, try

chmod u+x /path/opt/apache-ant-1.8.2/bin/ant

If someone else owns it, either sudo or become root then

chmod 755 /path/opt/apache-ant-1.8.2/bin/ant

You need to have execute permissions on the file; the first gives execute permissions to the owner only and is probably preferable if you own the file and are the only one that uses it. The second requires root privileges and gives execute and read permission to everyone, plus write permission to the owner.

You can view the current permissions and ownership of the file by running ls -l /path/opt/apache-ant-1.8.2/bin/ant.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文