无法完成Conjure-up设置以启动AWS中的Kubernetes集群,以下是错误的详细信息:
我的预想版本是2.6.0
journalctl | grep conjure-up
的输出:
No journal files were opened due to insufficient permissions
$ cat $HOME/.cache/conjure-up/conjure-up.log
的输出:
2018-08-22 22:12:03,502 [ERROR] conjure-up/kubernetes-core - provider.py:379 - LXD Parse error: stderr:
error: unknown command: query
2018-08-22 22:12:05,504 [DEBUG] conjure-up/kubernetes-core - provider.py:355 - LXD environment set: binary /usr/bin/lxc lxd_dir /var/lib/lxd
2018-08-22 22:12:05,526 [DEBUG] conjure-up/kubernetes-core - provider.py:372 - LXD query cmd: /usr/bin/lxc query --wait /1.0
2018-08-22 22:12:05,548 [ERROR] conjure-up/kubernetes-core - provider.py:378 - LXD Parse error: stdout: Usage: lxc <command> [options]
答案 0 :(得分:1)
如果您仍然遇到此问题,请查看here
基本上,您必须卸载当前的lxd并通过snap进行安装。
sudo apt purge lxc lxd lxd-client
sudo snap install lxd
/snap/bin/lxd init
/snap/bin/lxd.migrate
sudo usermod -a -G lxd $USER
newgrp lxd
更新:
如果发生这种情况,我相信删除该.cache文件夹可能会有所帮助:
rm -rf ~/.cache/conjure-up
我有一个不同的错误-它抱怨无法获取网桥接口的ip地址-但是上面的帮助对我来说更多。
此外,我后来不得不发出以下命令来“禁用”桥接接口上的ipv6 nat,尽管对lxd init
中的问题回答“无”:
lxc network set lxdbr0 ipv6.nat false