本地 Windows 计算机的基本 Apache 命令

发布于 2024-11-23 15:35:53 字数 251 浏览 0 评论 0原文

我已经在我的 Windows 7 计算机上安装了 XAMPP 并创建了许多虚拟服务器。这部分很简单。

每次添加新的虚拟服务器时,我都必须重新启动计算机才能重新启动 Apache 服务器,这当然非常耗时。

我在 google 上搜索并找到了用于重新启动 Apache 的正确控制台命令,但我找到的参考资料中绝对没有告诉您在哪里键入相关命令!假设有一定的知识水平。

所以我的问题是 - 我实际上在哪里输入 apache -k restart ?

I have installed XAMPP on my Windows 7 machine and created a number of virtual servers. This part is straightforward enough.

Each time I add a new virtual server I am having to reboot my computer in order to reboot the Apache server, which is of course quite time consuming.

I have googled and found the correct console commands to use to reboot Apache, but absolutely non of the references that I have found actually tell you where to type the relevant commands! A certain level of knowledge is assumed.

So my question is - where do I actually type apache -k restart?

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

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

发布评论

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

评论(2

柳絮泡泡 2024-11-30 15:35:53

在这里回到绝对的基础知识。本页上的答案和一点谷歌搜索使我对我的问题有了以下解决方案。
安装 Xampp 后重新启动 apache 服务的步骤:-

  1. 单击开始按钮并键入 CMD(如果在 Windows Vista 或更高版本上并且 Apache 作为服务安装,请确保这是一个 提升的命令提示符)
  2. 在出现的命令窗口中键入 cd C:\xampp\apache\bin (Xampp 的默认安装路径)
  3. 然后输入 httpd -k restart

我希望这对刚开始运行本地 Apache 的其他人有用服务器。

Going back to absolute basics here. The answers on this page and a little googling have brought me to the following resolution to my issue.
Steps to restart the apache service with Xampp installed:-

  1. Click the start button and type CMD (if on Windows Vista or later and Apache is installed as a service make sure this is an elevated command prompt)
  2. In the command window that appears type cd C:\xampp\apache\bin (the default installation path for Xampp)
  3. Then type httpd -k restart

I hope that this is of use to others just starting out with running a local Apache server.

誰認得朕 2024-11-30 15:35:53

对于经常使用此命令的情况,我发现将 C:\xampp\apache\bin 的位置添加到 PATH 中很容易。使用安装此文件的任何目录。

然后您可以从命令行中的任何目录运行:

httpd -k restart

上面的答案表明 httpd -k -restart 实际上是一个拼写错误。您可以通过运行httpd /?来查看命令

For frequent uses of this command I found it easy to add the location of C:\xampp\apache\bin to the PATH. Use whatever directory you have this installed in.

Then you can run from any directory in command line:

httpd -k restart

The answer above that suggests httpd -k -restart is actually a typo. You can see the commands by running httpd /?

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