美文网首页linux tools
KVM可视化部署

KVM可视化部署

作者: H_appiness | 来源:发表于2019-04-09 15:08 被阅读117次

    KVM虚拟化—可视化

    卸载:

    删除可视化操作

    rm -rf /etc/nginx/

    rm -rf /etc/wok/

    yum remove nginx-mod* -y

    netstat -ntlp(查看已经没有80端口)

    安装:

    下载文件:

    https://github.com/kimchi-project/kimchi/releases/tag/2.4.0

    我这里使用的是contos

    yum -y installwok-2.4.0-0.el7.centos.noarch.rpm ginger-base-2.3.0-0.el7.centos.noarch.rpmkimchi-2.4.0-0.el7.centos.noarch.rpm

    重新加载服务

    systemctl daemon-reload

    systemctl daemon-reload

    systemctl restart nginx

    查看是否已经开启80端口

    netstat -ntlp

    浏览器访问

    192.168.100.202:8001

    输入centos系统的用户名密码

    登录日志

    这时候是没有Virtualization选项的,

    查看日志

    cat /var/log/wok/wok-error.log

    日志说明存储资源池冲突

    需要做如下操作

    查看存储池如下:

    virsh pool-list --all

    编辑kimchi配置文件

    vim /etc/kimchi/template.conf

    改成红框内的字样(要和默认资源池对应上)

    重启wokd

    systemctl restart wokd

    重新刷新WEB界面

    查看最新版本的可视化

    https://github.com/kimchi-project/kimchi/releases/

    关于wok、kimchi、ginger-base相关理论知识查看

    https://www.jianshu.com/p/dade959b9bf0

    相关文章

      网友评论

        本文标题:KVM可视化部署

        本文链接:https://www.haomeiwen.com/subject/blnbiqtx.html