欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Requested operation is not valid: network 'default' is not active

程序员文章站 2022-04-15 18:45:19
...

错误信息

Debian系统通过KVM部署虚拟机,运行 virt-install 指定 --network network=default 的时候会出现下面的错误:

ERROR    Requested operation is not valid: network 'default' is not active

问题解决

  1. 确定virth环境中有default网络,如下:
[email protected]:/home/th# virsh net-list --all
 Name                 State      Autostart     Persistent
----------------------------------------------------------
 default              inactive   no            yes
  1. start当前default网络
    virsh net-start default
[email protected]:/home/th# virsh net-start default
Network default started

更多参考

http://ask.xmodulo.com/network-default-is-not-active.html