on both host and guest running CentOS 6.3 with KVM/Qemu virtualization, I have the following scenarios:
"virsh shutdown kvm1" did not shutdown at all. virsh lists guest as running.
"service libvirt-guests stop" did not shutdown in 280 seconds (shutdown_timeout=300. on_shutdown=shutdown)
"shutdown now" from within guest, guest becomes unreachable.
I would like to connect to a remote MySQL from my host, but the host is behind a ssh proxy, like this.
I have 3 hosts in this problem
A: my local machine (that can ssh to B)
B: Intermediate machine that can SSH to C
C: a remote server running MySQL and allows only connections from localhost (grant)
I use ~/.ssh/config to allow me to ssh directly from A to C (using B as proxy).
Host B
Pro
I have ubuntu 12.04 installed with virtualbox 4.1.12. I have a windows 7 professional 32-bit virtualmachine with a bridged network adapter inside virtualbox. I've given a static ip to this machine with all ports open on both host and virtual machine (for now) but people outside of my network can't remote into the virtual machine, just the host.
I am trying to set up Open MPI between a few machines on out network.
Open MPI works fine locally, but I just can't get it to work on a remote node.
I can ssh into the remote machine (without password) just fine, but if I try something like
mpiexec -n 4 --host remote.host hello_c
then the ssh connection just times out.
I checked several tutorials but the only configuration instructions they gi
I am currently using ssh to forward few ports like this:
There are 3 machines:
A-host - machine building the tunnel, one that can access both B and C
B-host - machine that does not have access to A or C that that needs to be able to connect to C:636
C-host - machine providing a service on port 636
A-host>ssh -R 636:C-host:636 -R 8080:C-host:8080 root@B-host
The question is how to make th
Question: I have setup bind 9 with DLZ, then I added the following test domains:
DELETE FROM dns_record;
INSERT INTO dns_record(
id, "zone", ttl, "type", host, mx_priority, data, primary_ns,
resp_contact, serial, refresh, retry, expire, minimum)
VALUES (5, 'testentry.com', 3600, 'A', '@', NULL, '28.84.21.77', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
,(6, 'testentr
# virsh sysinfo
error: failed to get sysinfo
error: unsupported configuration: Host SMBIOS information is not available
# virsh -c qemu:///system sysinfo
error: failed to get sysinfo
error: unsupported configuration: Host SMBIOS information is not available
Following this tutorial to the letter: http://eduardo-lago.blogspot.com/2012/01/how-to-install-kvm-and-libvirt-...
Everything else wor
What is your network configuration between host and guest? show both you guest and network configs (virsh dumpxml guest and virsh net-dumpxml default), please. [by k8neo]
I m trying to copy the id_rsa.pub key to the server. The server in my case also has a virutal machine called dev which runs on the host machine. I copied the id_rsa.pub key to the host for auto log in using this command.
ssh-copy-id -i ~/.ssh/id_rsa.pub vickey@host
which worked fine and I can auto log in to host. I also wanted to auto log in to the dev machine.