转到/etc/httpd/conf/httpd.conf甚至更改后

Allow override none -> Allow override All , and then restarting the server using

service httpd restart

然后我输入命令
 a2enmod proxy

然后我得到一个错误:
bash- a2enmod command not found. .

你能帮我么?当我使用Web套接字时,在开发人员工具控制台中出现错误,因此我需要启用Web套接字代理。

最佳答案

我遇到了同样的问题,这个答案解决了我的问题:

Apache2 command such as a2enmod and a2ensite no working its showing command not found in Ubuntu

尝试:

sudo apt-get update
sudo apt-get install apache2 libapache2-mod-wsgi

然后,
sudo a2enmod wsgi

然后,您可能还想尝试sudo a2enmod而不是a2enmod

08-19 16:37