search for: vnc_listen

Displaying 11 results from an estimated 11 matches for "vnc_listen".

2014 Dec 30
3
Secret incantations for virt-viewer?
...on > localhost. You need to modify the VNC console on the VM to access throu the > network. As Marcelo points out, by default QEMU listens on localhost for VNC consoles. If you grep vnc out of the qemu.conf, you'll get hints at a bunch of different options. More than likely you want the vnc_listen config parameter. ~]# grep vnc /etc/libvirt/qemu.conf vnc_listen = "X.X.X.X" # over vnc_listen. #vnc_auto_unix_socket = 1 #vnc_tls = 1 # default it to keep them in /etc/pki/libvirt-vnc. This directory #vnc_tls_x509_cert_dir = "/etc/pki/libvirt-vnc" # certificate signed by the C...
2014 Dec 30
0
Secret incantations for virt-viewer?
...C console on the VM to access throu > > the > > network. > > As Marcelo points out, by default QEMU listens on localhost for VNC > consoles. > If you grep vnc out of the qemu.conf, you'll get hints at a bunch of > different options. > More than likely you want the vnc_listen config parameter. > > ~]# grep vnc /etc/libvirt/qemu.conf > vnc_listen = "X.X.X.X" > # over vnc_listen. > #vnc_auto_unix_socket = 1 > #vnc_tls = 1 > # default it to keep them in /etc/pki/libvirt-vnc. This directory > #vnc_tls_x509_cert_dir = "/etc/pki/libvirt...
2014 Dec 30
4
Secret incantations for virt-viewer?
Hello everyone - I am trying to use virt-viewer to connect to KVM virtual machines running on a CentOS7 host. It works great when running directly on the host, but I have not been able to figure out the magic connection string to make it work from another computer. On the host, I set selinux to "permissive" and stopped the firewalld service. No change, so it is not related to
2016 Jan 29
2
virt-viewer and virt-manager problem
Hello, here is my problem : i migrated an old debian server, with kvm host and guests vm, on a new one (wheezy to jessie). Everything worked fine on this old server. On the new server, i created a storage pool, copy the qcow2 guests files (from the old server) inside this storage pool, copy the xml guests files (from the old server) to /etc/libvirt/qemu , then virsh define guests and virsh
2016 Jan 29
0
Re: virt-viewer and virt-manager problem
...> > when i do vncviewer 192.168.151.248:5906 it works fine > > then i think the problem come from virt-viewer and virt-manager, but i > cant see where is the problem. > Does someone could help to solve this problem. Is there anything else that you've changed, for example vnc_listen or spice_listen in /etc/libvirt/qemu.conf? > > Thanks > > -- > Pascal > > _______________________________________________ > libvirt-users mailing list > libvirt-users@redhat.com > https://www.redhat.com/mailman/listinfo/libvirt-users
2016 Jan 29
3
Re: virt-viewer and virt-manager problem
...nager (virt-manager --debug) would be helpful. Cf virt-manager.debug don't need to forwar X to your client, you can install virt-manager/virt-viewer directly on your client station and add ssh connection. i will made the test > Is there anything else that you've changed, for example vnc_listen or > spice_listen in /etc/libvirt/qemu.conf? i didnt touch anything in this file Thanks again -- Pascal
2009 May 28
1
[PATCH node] Temporarily disable security driver.
...it a/scripts/ovirt-functions b/scripts/ovirt-functions index 25a6bab..a1ee4ac 100755 --- a/scripts/ovirt-functions +++ b/scripts/ovirt-functions @@ -188,6 +188,11 @@ ovirt_setup_libvirtd() { # set up qemu daemon to allow outside VNC connections sed -i -e 's/^[[:space:]]*#[[:space:]]*\(vnc_listen = "0.0.0.0"\).*/\1/' \ /etc/libvirt/qemu.conf + + # FIXME: For now, disable selinux security driver for qemu since we don't seem + # to have the right policy file for it on F10. DELETE ME FOR F11!! + echo 'security_driver = "none"' >> /etc...
2011 Jul 25
0
[PATCH node] Drop F15 build recipes
...touch /etc/resolv.conf - - # make libvirtd listen on the external interfaces - sed -i -e 's/^#\(LIBVIRTD_ARGS="--listen"\).*/\1/' \ - /etc/sysconfig/libvirtd - - # set up qemu daemon to allow outside VNC connections - sed -i -e 's/^[[:space:]]*#[[:space:]]*\(vnc_listen = "0.0.0.0"\).*/\1/' \ - /etc/libvirt/qemu.conf - # set up libvirtd to listen on TCP (for kerberos) - sed -i -e "s/^[[:space:]]*#[[:space:]]*\(listen_tcp\)\>.*/\1 = 1/" \ - -e "s/^[[:space:]]*#[[:space:]]*\(listen_tls\)\>.*/\1 = 0/" \ -...
2010 Aug 12
0
[PATCH, v2]: xl: Implement per-API-call garbage-collection lifetime
...int libxl_primary_console_exec(libxl_ctx *ctx, uint32_t domid_vm) @@ -905,6 +973,7 @@ int libxl_primary_console_exec(libxl_ctx int libxl_vncviewer_exec(libxl_ctx *ctx, uint32_t domid, int autopass) { + libxl_gc gc = LIBXL_INIT_GC(ctx); const char *vnc_port, *vfb_back; const char *vnc_listen = NULL, *vnc_pass = NULL; int port = 0, autopass_fd = -1; @@ -915,22 +984,22 @@ int libxl_vncviewer_exec(libxl_ctx *ctx, NULL, }; - vnc_port = libxl_xs_read(ctx, XBT_NULL, - libxl_sprintf(ctx, + vnc_port = libxl_xs_read(&gc, XBT_NULL, +...
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...# make libvirtd listen on the external interfaces + os.system("sed -i -e 's/^#\(LIBVIRTD_ARGS=\"--listen\"\).*/\1/' /etc/sysconfig/libvirtd") + + # set up qemu daemon to allow outside VNC connections + os.system("sed -i -e 's/^[[:space:]]*#[[:space:]]*\(vnc_listen = \"0.0.0.0\"\).*/\1/' /etc/libvirt/qemu.conf") + # set up libvirtd to listen on TCP (for kerberos) + os.system('sed -i -e "s/^[[:space:]]*#[[:space:]]*\(listen_tcp\)\>.*/\1 = 1/" \ + -e "s/^[[:space:]]*#[[:space:]]*\(listen_tls\)\>.*/\1 = 0/&...
2013 Dec 01
70
[PATCH 00/13] Coverity fixes for libxl
Matthew Daley (13): libxl: fix unsigned less-than-0 comparison in e820_sanitize libxl: check for xc_domain_setmaxmem failure in libxl__build_pre libxl: correct file open success check in libxl__device_pci_reset libxl: don''t leak p in libxl__wait_for_backend libxl: remove unsigned less-than-0 comparison libxl: actually abort if initializing a ctx''s lock fails libxl: