我正在尝试通过ansible-galaxy安装一个ansible角色。我运行命令
ERROR! The API server (https://galaxy.ansible.com/api/) is not responding, please try again later.
并得到回复:
print('%20s'%'stuff')
我已经尝试更新我的ansible版本(1.9.1,1.9.2,2.0.1)但似乎没有解决问题。我可以通过在我的网络浏览器中转到https://galaxy.ansible.com/api/来访问API服务器。任何想法为什么galaxy似乎不适合我?
答案 0 :(得分:1)
AHA!显然我需要wget才能让ansible-galaxy工作。我使用macports安装wget和ansible-galaxy安装工作就像一个魅力!
答案 1 :(得分:1)
我有同样的问题。对我来说,ansible是由pip
安装的,我必须先将其卸载:
pip uninstall ansible
然后我用brew
brew install ansible
在此之后,它就像魅力一样。
答案 2 :(得分:0)
如果您使用代理,请将evnironment“https_proxy”设置为“http://ip:port”格式。不是“ip:port”格式。
export https_proxy=http://ip:port
答案 3 :(得分:0)
您可以使用--offline
选项跳过对银河API的检查
答案 4 :(得分:0)
遇到过同样的问题,我也支持公司代理。'-c'选项帮助我进一步进行操作。
-c, --ignore-certs Ignore SSL certificate validation errors.