• 在Ubuntu下的OpenStack中配置使用Spice协议


    在Ubuntu下的OpenStack中配置使用Spice协议

    by 无若


    ####控制节点
    #安装
    apt-get install nova-spiceproxy spice-html5 spice-vdagent

    #配置 nano /etc/nova/nova.conf
    # Vnc configuration
    #vnc_enabled=false

    [spice]
    enabled=true
    html5proxy_base_url=http://192.168.29.81:6082/spice_auto.html
    keymap=en-us
    server_listen=0.0.0.0
    server_proxyclient_address=192.168.29.81
    agent_enabled=false


    #重启
    cd /usr/bin/;for i in $(ls nova-*);do sudo service $i restart;done


    ####计算节点
    #安装
    apt-get install spice-vdagent

    #配置 nano /etc/nova/nova.conf
    vnc_enabled=false
    novnc_enabled=false

    [spice]
    agent_enabled=true
    enabled=true
    html5proxy_base_url=http://192.168.29.81:6082/spice_auto.html
    keymap=en-us
    server_listen=0.0.0.0
    server_proxyclient_address=192.168.29.92
    agent_enabled=false

    #重启
    cd /usr/bin/;for i in $(ls nova-*);do sudo service $i restart;done

    #到计算节点查看指定主机的端口
    ps aux | grep spice

  • 相关阅读:
    C# 6.0
    C# 4.0
    C# 5.0
    C# 3.0
    C# 2.0
    C# 1.0(2002)
    字典树Trie
    Hadoop——生态体系
    程序是怎样跑起来的
    Redis实战(十七)Redis各个版本新特性
  • 原文地址:https://www.cnblogs.com/gleaners/p/5603856.html
Copyright © 2020-2023  润新知