首页 > 系统服务 > 详细

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

时间:2016-06-21 17:03:59      阅读:291      评论:0      收藏:0      [点我收藏+]

在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

 

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

原文:http://www.cnblogs.com/gleaners/p/5603856.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!