Displaying 11 results from an estimated 11 matches for "start_delay".
2012 Apr 09
0
virsh works but libvirt-java throws a 'No route to host'
...t did not contain expected field children.
Struct did not contain expected field bios_strings.
Struct did not contain expected field protection_policy.
Struct did not contain expected field is_snapshot_from_vmpp.
Struct did not contain expected field appliance.
Struct did not contain expected field start_delay.
Struct did not contain expected field shutdown_delay.
Struct did not contain expected field order.
Struct did not contain expected field VGPUs.
Struct did not contain expected field attached_PCIs.
Struct did not contain expected field suspend_SR.
Struct did not contain expected field version.
0...
2018 Aug 22
2
Guest startup delay options ignored
Hi Folks,
been searching around for a while on this and see similar issues reported going back a number of years without solution.
The START_DELAY=(number) seems to be completely ignored in /etc/sysconfig/libvirt-guests which is unfortunate as it means everything starts at once without control.
This is fine on NVMe based servers however on the older spinning disks the I/O is creating significant issues.
Is anyone aware of any other method...
2018 Aug 23
0
Re: Guest startup delay options ignored
...settings
# - ignore libvirt-guests init script won't start any guest on boot, however,
# guests marked as autostart will still be automatically started by
# libvirtd
ON_BOOT=ignore
# Number of seconds to wait between each guest start. Set to 0 to allow
# parallel startup.
START_DELAY=180
# action taken on host shutdown
# - suspend all running guests are suspended using virsh managedsave
# - shutdown all running guests are asked to shutdown. Please be careful with
# this settings since there is no way to distinguish between a
# guest which is stuck or...
2007 Feb 01
2
Re: [Nut-upsuser] Ablerex 625L USB version
...gt; ***************
> *** 564,571 ****
> {
> upslogx(LOG_INFO, "Shutting down UPS immediately.");
>
> ! ser_send_pace(upsfd, SEND_PACE, "C%c", ENDCHAR);
> ! ser_send_pace(upsfd, SEND_PACE, "S%02dR%04d%c",
> shutdown_delay, start_delay, ENDCHAR);
> }
>
>
> --- 569,576 ----
> {
> upslogx(LOG_INFO, "Shutting down UPS immediately.");
>
> ! comm->send("C%c", ENDCHAR);
> ! comm->send("S%02dR%04d%c%c", shutdown_delay, start_delay, ENDCHAR);
>...
2013 Jul 10
2
Re: guests not shutting down when host shuts down
...autostart settings
# - ignore libvirt-guests init script won't start any guest on boot, however,
# guests marked as autostart will still be automatically started by
# libvirtd
ON_BOOT=start
## Type: integer
## Default: 0
# number of seconds to wait between each guest start
START_DELAY=0
## Type: string
## Default: suspend
# action taken on host shutdown
# - suspend all running guests are suspended using virsh managedsave
# - shutdown all running guests are asked to shutdown. Please be careful with
# this settings since there is no way to distinguish between a
#...
2006 Dec 05
3
megatec over USB - new driver patch
..."serial.h"
#include "megatec.h"
#include <stdio.h>
@@ -44,9 +43,6 @@
#define IDENT_MAXTRIES 5
#define IDENT_MINSUCCESS 3
-#define SEND_PACE 100000 /* 100ms interval between chars */
-#define READ_TIMEOUT 2 /* 2 seconds timeout on read */
-
#define MAX_START_DELAY 9999
#define MAX_SHUTDOWN_DELAY 99
@@ -167,7 +163,6 @@
/* I know, macros should evaluate their arguments only once */
#define CLAMP(x, min, max) (((x) < (min)) ? (min) : (((x) > (max)) ? (max) : (x)))
-
static float batt_charge_pct(float battvolt)
{
float value;
@@ -178,15 +173,...
2013 Jul 10
0
Re: guests not shutting down when host shuts down
...t script won't start any guest
> on boot, however,
> # guests marked as autostart will still be
> automatically started by
> # libvirtd
> ON_BOOT=start
>
> ## Type: integer
> ## Default: 0
> # number of seconds to wait between each guest start
> START_DELAY=0
>
> ## Type: string
> ## Default: suspend
> # action taken on host shutdown
> # - suspend all running guests are suspended using virsh managedsave
> # - shutdown all running guests are asked to shutdown.
> Please be careful with
> # this settings since there...
2015 Aug 11
0
libvirt-guests.service doesn't work, but manually running libvirt-guests.sh stop does
...751 ExecStart=/usr/lib/libvirt/libvirt-guests.sh start
(code=exited, status=0/SUCCESS)
Main PID: 751 (code=exited, status=0/SUCCESS)
=====
$ cat /etc/conf.d/libvirt-guests
BYPASS_CACHE=0
CONNECT_RETRIES=10
ON_BOOT=start
ON_SHUTDOWN=shutdown
PARALLEL_SHUTDOWN=4
RETRIES_SLEEP=1
SHUTDOWN_TIMEOUT=300
START_DELAY=0
URIS=default
=====
A virsh # shutdown <vmname> or an in-guest systemctl poweroff takes a few
seconds (3-5?)
=====
{{{ libvirt-guests.service is: }}}
[Unit]
Description=Suspend Active Libvirt Guests
After=network.target libvirtd.service time-sync.target
Documentation=man:libvirtd(8)
Document...
2005 Oct 10
1
Re: About blazer, powermust and mustek
...odel", "unknown (Megatec protocol based)");
dstate_setinfo("ups.serial", "unknown");
if (get_firmware_values(&values) < 0) {
@@ -427,7 +427,7 @@
if (strcasecmp(varname, "ups.delay.start") == 0) {
delay = CLAMP(delay, 0, MAX_START_DELAY);
start_delay = delay;
- dstate_setinfo( "ups.delay.start", "%d", delay);
+ dstate_setinfo("ups.delay.start", "%d", delay);
dstate_dataok();
@@ -437,7 +437,7 @@
if (strcasecmp(varname, "ups.delay.shutdown") == 0) {
delay = CLAM...
2013 Jul 10
2
guests not shutting down when host shuts down
Hi,
i have a SLES 11 SP2 64bit host with three guests:
- Windows XP 32
- Ubuntu 12.04 LTS 64bit
- SLES 11 SP2 64bit
The SLES guest shuts down with the host shutdown. The others not. When i shutdown these two guests with the virt-manager, they shutdown fine.
ACPI is activated in virt-manager for both of them. Acpid is running in the Ubuntu Client.
When the host shuts down, the two guests get a
2011 May 05
0
Release of libvirt-0.9.1
...nto dist file (Wen Congyang)
- tests: test recent virsh option parsing changes (Eric Blake)
- virsh: list required options first (Eric Blake)
- phyp: use consistent return string handling (Eric Blake)
- maint: use lighter-weight function for straight appends (Eric Blake)
- libvirt-guests: implement START_DELAY (Alexander Todorov)
- network: truncate bridges' dummy tap device names to IFNAMSIZ (15) chars (Laine Stump)
- Introduce virDomainChrDefNew() (Michal Novotny)
- esx: Make the parsed URI part of the private connection data (Matthias Bolte)
- esx: Mark error message in macros for translation (Mat...