Configure using the Spice protocol in OpenStack under Ubuntu
By No if
# # #控制节点
#安装
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-*);d o 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-*);d o sudo service $i restart;done
#到计算节点查看指定主机的端口
PS aux | grep Spice
Configure using the Spice protocol in OpenStack under Ubuntu