Apache 命令行无法运行
使用 Centos 5.6 在我的 vps 上安装了 Apache Ver 2.2.3,但是当我尝试 a2dismod 和 a2enmod 时出现“命令未找到”错误。
我能做什么来修复它?
谢谢
- 这是我的第一个vps,也是我第一次使用linux和centos。
- 服务器运行良好,只需要禁用几个模块。
Installed Apache Ver 2.2.3 on my vps with Centos 5.6 but when I try the a2dismod and a2enmod got Command not found error.
What can I do to fix it?
Thank you
- This is my first vps and this is also my first experience with linux and centos.
- The server is running fine just need to disable few modules.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 CentOS 上,没有 a2enmod 和 a2dismod 命令。要禁用 Apache 中不需要的模块,您需要执行例如这篇文章下端所述的步骤:http://www.cyberciti.biz/faq/howto-disable-apache-modules-under-linux-unix/
On CentOS there are no a2enmod and a2dismod commands. To disable unneeded modules in Apache, you need to carry out steps as described at the lower end of – for instance – this post: http://www.cyberciti.biz/faq/howto-disable-apache-modules-under-linux-unix/
也许这些命令不在您的路径中?如果程序位于您当前的工作目录中,请尝试 ./a2dismod。
要查看 shell 正在搜索的路径,请尝试 echo $PATH。
Perhaps those commands were not in your path? If the programs are in your current working directory, try ./a2dismod.
To see what path our shell is searching, try echo $PATH.