http://download.cirros-cloud.net/0.3.5/ 下载 cirros-0.3.5-x86_64-disk.img 

 

因为 KVM(准确说是 Libvirt)默认不接受远程管理,需要按下面的内容配置被管理宿主机中的两个文件

/etc/default/libvirt-bin

start_libvirtd=”yes” 
libvirtd_opts=”-d -l”

/etc/libvirt/libvirtd.conf

listen_tls = 0 
listen_tcp = 1 
unix_sock_group = “libvirtd” 
unix_sock_ro_perms = “0777” 
unix_sock_rw_perms = “0770” 
auth_unix_ro = “none” 
auth_unix_rw = “none” 
auth_tcp = “none”

然后重启 Libvirtd 服务就可以远程管理了。

service libvirt-bin restart

 

相关文章:

  • 2021-11-25
  • 2021-12-02
  • 2021-11-30
  • 2021-07-18
  • 2021-05-11
  • 2021-08-26
  • 2021-04-19
猜你喜欢
  • 2021-09-12
  • 2021-11-26
  • 2021-11-25
  • 2021-09-27
  • 2021-12-28
相关资源
相似解决方案