找到 apache2ctl

发布于 2024-11-26 22:14:03 字数 367 浏览 0 评论 0原文

我可以说 apache2ctl 很优雅,我的网络服务器在交互式 shell 中重新启动。一切都很好。但是,我需要在 shell 脚本中说明这一点,因此我需要 apache2ctl 的完整路径。我尝试过which和locate,但什么也没出现,这让我非常惊讶。我查看了/usr/bin,没有apache2ctl。我如何知道它住在哪里?

我想也许它会在 /opt/local/apache2/bin 中,但那里有一个 apachectl...而不是 apache2ctl。我很困惑。有什么想法吗?

@Jon Lin - 干得好...类型 apache2ctl 告诉我 apache2ctl 是别名 sudo /opt/local/apache2/bin/apachectl'` 。非常感谢。

I can say apache2ctl graceful and my webserver restarts at an interactive shell. All is well. However, I need to say that in a shell script so I need the full path for apache2ctl. I have tried which and locate but nothing turns up which makes me very surprised. I looked in /usr/bin and there is no apache2ctl. How do I figure out where this lives?

I thought maybe it would be in /opt/local/apache2/bin but there is an apachectl in there...not a apache2ctl. I'm stumped. Any ideas?

@Jon Lin - Nice work...type apache2ctl told me apache2ctl is aliased tosudo /opt/local/apache2/bin/apachectl'` . Thank you very much.

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

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

发布评论

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

评论(3

尸血腥色 2024-12-03 22:14:03

它应该位于 /usr/sbin 或 /usr/local/sbin 中

It should be in /usr/sbin or /usr/local/sbin

眼角的笑意。 2024-12-03 22:14:03

您可能需要在 locate 之前运行 updatedb 以防万一

$ updatedb
# takes a while

$ locate apache2ctl

,或者您可以运行 find / -name 'apache2ctl' 2>; /dev/null 搜索整个分区

You probably need to run updatedb before locate just in case

$ updatedb
# takes a while

$ locate apache2ctl

Or you can run find / -name 'apache2ctl' 2> /dev/null to search for your entire partition

坏尐絯 2024-12-03 22:14:03

您尝试过which吗? (不确定 Mac 上是否存在,尽管它在大多数 *nix 系统上相当标准;其行为与 Windows 上的 where 类似)。

Did you try which? (Not sure if that'd be present on a Mac, though it's pretty standard on most *nix systems; behaves rather like where on windows).

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