1LIBVIRTD(8) Virtualization Support LIBVIRTD(8)
2
3
4
6 libvirtd - libvirtd management daemon
7
9 libvirtd [ -dlv ] [ -f config_file ] [ -p pid_file ] [ -t
10 timeout_seconds ]
11
12 libvirtd --version
13
15 The libvirtd program is the server side daemon component of the libvirt
16 virtualization management system.
17
18 This daemon runs on host servers and performs required management tasks
19 for virtualized guests. This includes activities such as starting,
20 stopping and migrating guests between host servers, configuring and
21 manipulating networking, and managing storage for use by guests.
22
23 The libvirt client libraries and utilities connect to this daemon to
24 issue tasks and collect information about the configuration and
25 resources of the host system and guests.
26
27 By default, the libvirtd daemon listens for requests on a local Unix
28 domain socket. Using the -l|--listen command line option, the libvirtd
29 daemon can be instructed to additionally listen on a TCP/IP socket.
30 The TCP/IP socket to use is defined in the libvirtd configuration file.
31
32 Restarting libvirtd does not impact running guests. Guests continue to
33 operate and will be picked up automatically if their XML configuration
34 has been defined. Any guests whose XML configuration has not been
35 defined will be lost from the configuration.
36
38 -d, --daemon
39 Run as a daemon & write PID file.
40
41 -f, --config FILE
42 Use this configuration file, overriding the default value.
43
44 -l, --listen
45 Listen for TCP/IP connections.
46
47 -p, --pid-file FILE
48 Use this name for the PID file, overriding the default value.
49
50 -t, --timeout SECONDS
51 Exit after timeout period (in seconds) expires.
52
53 -v, --verbose
54 Enable output of verbose messages.
55
56 --version
57 Display version information then exit.
58
60 On receipt of SIGHUP libvirtd will reload its configuration.
61
63 /etc/libvirtd.conf
64 The default configuration file used by libvirtd, unless overridden
65 on the command line using the -f|--config option.
66
67 /var/run/libvirt/libvirt-sock
68 /var/run/libvirt/libvirt-sock-ro
69 The sockets libvirtd will use when run as root.
70
71 $HOME/.libvirt/libvirt-sock
72 The socket libvirtd will use when run as a non-root user.
73
74 /etc/pki/CA/cacert.pem
75 The TLS Certificate Authority certificate libvirtd will use.
76
77 /etc/pki/libvirt/servercert.pem
78 The TLS Server certificate libvirtd will use.
79
80 /etc/pki/libvirt/private/serverkey.pem
81 The TLS Server private key libvirtd will use.
82
83 /var/run/libvirtd.pid
84 The PID file to use, unless overridden by the -p|--pid-file option.
85
87 To retrieve the version of libvirtd:
88
89 # libvirtd --version
90 libvirtd (libvirt) 0.8.2
91 #
92
93 To start libvirtd, instructing it to daemonize and create a PID file:
94
95 # libvirtd -d
96 # ls -la /var/run/libvirtd.pid
97 -rw-r--r-- 1 root root 6 Jul 9 02:40 /var/run/libvirtd.pid
98 #
99
101 Please report all bugs you discover. This should be done via either:
102
103 a) the mailing list
104 <http://libvirt.org/contact.html>
105
106 or,
107
108 b) the bug tracker
109 <http://libvirt.org/bugs.html>
110
111 Alternatively, you may report bugs to your software distributor /
112 vendor.
113
115 Please refer to the AUTHORS file distributed with libvirt.
116
118 Copyright (C) 2006-2010 Red Hat, Inc., and the authors listed in the
119 libvirt AUTHORS file.
120
122 libvirtd is distributed under the terms of the GNU LGPL v2.1+. This is
123 free software; see the source for copying conditions. There is NO
124 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
125 PURPOSE
126
128 virsh(1), virt-install(1), virt-xml-validate(1), virt-top(1),
129 virt-mem(1), virt-df(1), <http://www.libvirt.org/>
130
131
132
133libvirt-0.8.3 2011-07-06 LIBVIRTD(8)