无法访问 MAAS 网页界面

无法访问 MAAS 网页界面

我目前正在使用虚拟机运行 ubuntu 服务器。我在上面安装了 maas。每次都会出现此错误。

The requested URL /MAAS was not found on this server.
Apache/2.2.22 (Ubuntu) Server at 192.168.1.105 Port 80

我尝试访问 Web 界面。我不知道我做错了什么。有人能帮我吗?谢谢。

答案1

看起来您在安装软件包时出了点问题。请检查/usr/share/maas/maas/urls.py系统上是否存在该文件,以确保软件包已安装。然后,您需要确保 apache 配置已正确安装,方法是确保该/etc/apache2/conf.d/maas-http.conf链接有效。

作为最后的选择,您可以清除该包并重新安装:

sudo apt-get purge maas
sudo apt-get install maas

答案2

只需更改你的网址即可

http://"localhost"/maas

http://"localhost"/MAAS

这可能很有趣但它确实有效相信我

尝试不带引号的网址"

答案3

我不知道这是否是您的问题的正确答案,但我遇到了同样的问题:更改控制器的 IP 地址后,MaaS 网络用户界面变得无法访问。

解决方案是重新配置许多与 MaaS 相关的包:

dpkg --get-selections | grep maas

输出如下:

maas                    install
maas-cli                install
maas-cluster-controller install
maas-common             install
maas-region-controller  install
...

我重新配置了软件包:

$ sudo dpkg-reconfigure maas-region-controller
$ sudo dpkg-reconfigure maas-cluster-controller
$ sudo reboot

... 现在一切正常!

希望能帮助到你。

相关内容