ERROR: unable to connect to server at 'ip:16509':Connetion refusedvim
由於ssh的不能訪問 因此使用tcp進行對遠程libvirtd進行鏈接訪問,例如bash
virsh -c qemu+tcp://example.com/systemssh
修改文件vim /etc/sysconfig/libvirtd
,用來啓用tcp的端口tcp
LIBVIRTD_CONFIG=/etc/libvirt/libvirtd.confide
LIBVIRTD_ARGS="--listen"ui
修改文件vim /etc/libvirt/libvirtd.conf
spa
重啓 libvirtd
命令行
service libvirtd restart
rest
若是沒起效果(個人就沒有生效 :( ),那麼使用命令行:
code
libvirtd --daemon --listen --config
/etc/libvirt/libvirtd
.conf
查看運行進程
[root@ddd run]# ps aux | grep libvirtd
root 16563 1.5 0.1 925880 7056 ? Sl 16:01 0:28 libvirtd -d -l --config /etc/libvirt/libvirtd.conf
查看端口
1
2
|
[root@ddd run]# netstat -apn | grep tcp
tcp 0 0 0.0.0.0:16509 0.0.0.0:* LISTEN 13971/libvirtd
|
在source host鏈接dest host遠程libvirtd查看信息
1
2
3
4
5
6
|
virsh -c qemu+tcp://你要遠程的IP/system
Welcome to virsh, the virtualization interactive terminal.
Type: 'help' for help with commands
'quit' to quit
|
成功使用tcp去訪問libvirtd。