我正尝试在Ubuntu16.04上安装ARA (https://github.com/openstack/ara)来监控我的Ansible playbook的执行
我完全遵循文档(http://ara.readthedocs.io/en/latest/index.html),当我为ARA配置Apache2时,文档要求将WSGI脚本ara-wsgi复制到/var/www/ara/ (http://ara.readthedocs.io/en/latest/webserver.html#id2)。
但是我找不到这个ara-wsgi文件。它应该与ARA一起安装(当我让pip安装ara时),但我不知道它在哪里。
你能帮我个忙吗?
发布于 2017-02-24 18:33:03
我在Fedora 25和Centos 7上遇到了同样的问题。对我有效的解决方案是直接从他们的Git repo安装ARA:
pip install git+https://git.openstack.org/openstack/ara此处将其作为一个安装选项提到:https://ara.readthedocs.io/en/latest/installation.html#installing-ara-from-trunk-source
编辑: 2017年3月7日,我刚做了“pip install ara”,发现0.12.1版已经过时了。在这个版本中,我有/usr/bin/ara-wsgi可用。
https://stackoverflow.com/questions/42421504
复制相似问题