Displaying 20 results from an estimated 300 matches similar to: "vcenter convert OpenStack"
2006 May 19
2
How to run direct DML (insert or update)
I want when the user clicks on a button on the browser
"Perform monthly billing run" the controller to lanch a sql DML
statment to be called (in the model?) than runs something like
"insert into billing (item, qnt, total_cost, billing_run_timestamp
select item, qnt, item*cost as total_cost, timestamp
from services
where service_end_date is null"
How can I run a DML
2014 Oct 10
0
Re: Plan for libguestfs 1.28
[Please keep replies on the list to help others]
On Fri, Oct 10, 2014 at 05:01:22PM +0800, Zhi Yong Wu wrote:
> On Fri, Oct 10, 2014 at 4:47 PM, Richard W.M. Jones <rjones@redhat.com> wrote:
> > On Fri, Oct 10, 2014 at 04:26:20PM +0800, Zhi Yong Wu wrote:
> >> You can't make sure that guest never fail or panic forever, right?
> >
> > Do you mean the guest
2010 Nov 07
0
vrit ip config
cat /etc/sysconfig/network-scripts/ifcfg-eth0*
# nVidia Corporation MCP61 Ethernet
DEVICE=eth0
BOOTPROTO=static
HWADDR=6C:F0:49:93:11:A3
IPADDR=192.168.182.237
NETMASK=255.255.255.0
ONBOOT=yes
# nVidia Corporation MCP61 Ethernet
DEVICE=eth0:1
BOOTPROTO=static
IPADDR=192.168.182.238
NETMASK=255.255.255.0
ONBOOT=yes
when reboot, ping show
network down
network up
xend start
network down
how to
2015 Oct 17
0
Re: [Error] guestfsd: /usr/lib/libaugeas.so.0: version `AUGEAS_0.16.0' not found (required by guestfsd)
On Sat, Oct 17, 2015 at 09:40:20PM +0300, Efstratios Skleparis wrote:
> Dear all,
>
> After successfully compiling libguestfs on XEN hypervisor [running
> ubuntu server 12.04 x64bit] i tried to ./run libguestfs-test-tool
> but I got this error:
>
> guestfsd: /usr/lib/libaugeas.so.0: version `AUGEAS_0.16.0' not found
> (required by guestfsd)
The error means the
2015 Oct 18
2
Re: [Error] guestfsd: /usr/lib/libaugeas.so.0: version `AUGEAS_0.16.0' not found (required by guestfsd)
Goodmornin,
Since I am running ubuntu I did " nm -D /usr/lib64/libaugeas.so.0 | grep
AUGEAS " and I didn't find "AUGEAS_0.16.0" , but I got this instead :
0000000000000000 A AUGEAS_0.1.0
0000000000000000 A AUGEAS_0.10.0
0000000000000000 A AUGEAS_0.11.0
0000000000000000 A AUGEAS_0.12.0
0000000000000000 A AUGEAS_0.14.0
0000000000000000 A AUGEAS_0.15.0
0000000000000000 A
2014 Dec 22
0
Re: virt-v2v - Unable to authenticate to vCenter as DOMAIN\user
On Mon, Dec 22, 2014 at 02:03:50PM +1100, Ben Hooper wrote:
> Hi,
>
> I am encountering an issue with virt-v2v where I need to authenticate to the vCenter as DOMAIN\user.
>
> I have tried the following with the resulting errors:
>
> 1. 'virt-v2v -v -x -ic 'vpx://vcenter/Datacenter/cluster_name/esx_server?no_verify=1' vm_name -o local -of raw -os /tmp'
>
2012 Apr 12
0
Can I get all esx servers by virsh connecting vcenter?
To Whom may be concerned:
I connect a vCenter by
vpx://example-vcenter.com/dc1/srv1
, but how I get all esx servers managed by this vCenter?
Thank you.
Mark
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20120412/4fe5527d/attachment.htm>
2013 Nov 05
0
Using resource pools (in vmware vcenter) with libvirt
Hi
I am evaluating use of libvirt to manage a cluster of ESXi servers.
We plan to use "resource pool" concept of vcenter/vmware to easily scale-up
or scale-down the cluster of ESXi servers
>From vmware doc
"Resource pools are partitions of computing and memory resources from a
single host or a cluster"
Since VM can be designated to hosts, clusters or "resource
2020 May 14
0
NUT control of vCenter & vServer?
This shuts down the hosts directly (by-passing vCenter)
http://rene.margar.fr/2012/05/client-nut-pour-esxi-5-0/
in spite of the title, it works for ESXi 6 and 7 as well
Bart…
From: Nut-upsuser <nut-upsuser-bounces+bart=smits.co.uk at alioth-lists.debian.net> On Behalf Of Lee Damon
Sent: 14 May 2020 16:53
To: nut-upsuser Mailing List <nut-upsuser at lists.alioth.debian.org>
Subject:
2020 May 14
0
NUT control of vCenter & vServer?
What about the REST API to do a graceful shutdown of your VM’s and the vCenter appliance: https://code.vmware.com/web/sdk/6.7/vsphere-automation-rest
Bart…
From: Lee Damon <nomad at ee.washington.edu>
Sent: 14 May 2020 20:29
To: Bart J. Smit <bart at smits.co.uk>
Cc: nut-upsuser at lists.alioth.debian.org
Subject: Re: [Nut-upsuser] NUT control of vCenter & vServer?
Thanks Bart.
2017 Sep 22
0
[PATCH v3 18/22] v2v: vCenter: Replace Str with PCRE.
---
v2v/vCenter.ml | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/v2v/vCenter.ml b/v2v/vCenter.ml
index d5e7c0378..434c93395 100644
--- a/v2v/vCenter.ml
+++ b/v2v/vCenter.ml
@@ -113,7 +113,7 @@ let get_session_cookie password scheme uri sslverify url =
Some !session_cookie
)
-let multiple_slash = Str.regexp "/+"
+let multiple_slash =
2017 Oct 13
0
[PATCH 5/5] v2v: vCenter: Handle disks with snapshots (RHBZ#1172425).
This implements a missing feature from old virt-v2v, namely being able
to cope with a guest with snapshots. Note this only converts the top
(latest) snapshot. As in old virt-v2v it does NOT convert the whole
chain of snapshots.
---
v2v/vCenter.ml | 28 ++++++++++++++++++++++++----
1 file changed, 24 insertions(+), 4 deletions(-)
diff --git a/v2v/vCenter.ml b/v2v/vCenter.ml
index
2020 Jan 20
1
[PATCH] vCenter: pass user name to nbdkit curl plugin
Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
---
v2v/vCenter.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/v2v/vCenter.ml b/v2v/vCenter.ml
index 89c5579b..d9bf12c1 100644
--- a/v2v/vCenter.ml
+++ b/v2v/vCenter.ml
@@ -79,7 +79,7 @@ let rec map_source ?bandwidth ?password_file dcPath uri server path =
let nbdkit =
Nbdkit.create_curl ?bandwidth
2020 May 19
1
[v2v PATCH] vCenter: fix parsing of HTTP status string (RHBZ#1837328)
vCenter 7 answers with an HTTP/2 status string, so we cannot extract
the status code from it by using fixed positions in that string.
Hence, pick the status code by reading what's after the whitespace.
Tested with vCenter 6.5 and 7.
---
v2v/vCenter.ml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/v2v/vCenter.ml b/v2v/vCenter.ml
index c28a4ced..4c128b0c 100644
---
2015 Nov 23
0
esx/vcenter: create a domain inside an folder
Hello at all
Im trying to create a domain inside a folder:
Host: foo.tld
Datacenter: dc1
Cluster: cluster name1
Host: esx.tld
Folder: folder/subfolder (inside Cluster bar.tld)
URL: vpx://foo.tld/dc1/cluster%20name1/folder/subfolder/esx.tld
I tried nearly every combination since the documentation is not 100% clear about that, but libvirt allways creates the domains inside vpx://foo.tld/dc1/ and
2014 Dec 23
1
Re: virt-v2v - Unable to authenticate to vCenter as DOMAIN\user
Thanks Richard, seems to work well.
Cheers,
Ben.
> On 22 Dec 2014, at 7:50 pm, Richard W.M. Jones <rjones@redhat.com> wrote:
>
>> On Mon, Dec 22, 2014 at 02:03:50PM +1100, Ben Hooper wrote:
>> Hi,
>>
>> I am encountering an issue with virt-v2v where I need to authenticate to the vCenter as DOMAIN\user.
>>
>> I have tried the following with the
2011 Nov 18
1
couting events by subject with "black out" windows
I large datset that includes subjects(ID), Dates and events that need to be counted. Not every date includes an event, and I need to only count one event per 30days, per subject. So in essence, I need to create a 30-day "black out" period during which time an event cannot be "counted" for each subject. The reason is that a rule has been set up, whereby a subject can only be
2020 May 14
2
NUT control of vCenter & vServer?
Is anyone using NUT to signal/control vCenter and vServer (6.x) for
shutdown when batteries are getting low? Any recommendations?
We've found
https://4sysops.com/archives/startup-and-shutdown-a-vmware-cluster-with-powercli-and-powershell/
but
I'd prefer to do this from the master (which is running CentOS 8) and not
pollute it by installing PS on it.
thanks,
nomad
-------------- next part
2020 May 26
1
[v2v PATCH] vCenter: require curl in #precheck
The curl binary is used in the VCenter module, so require it up-front.
This let us remove the need to point the user to check whether curl is
installed in an error message.
---
v2v/input_libvirt_vcenter_https.ml | 13 ++++++++++++-
v2v/vCenter.ml | 2 +-
2 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/v2v/input_libvirt_vcenter_https.ml
2015 Oct 15
3
Build libguestfs error with undefined reference to `guestfs_int_init_libvirt_backend'
Dear all,
I am trying to build libguestfs library on my system : Ubuntu Server 12.04
x64bit on XEN hypervisor.
I have followed all instructions on their homepage but whey i am trying to
build the library make -> gives me the following error: libguestfs.so:
undefined reference to `guestfs_int_init_libvirt_backend'
Here is a sample code of the error :
make[2]: Entering directory