]> git.proxmox.com Git - pve-docs.git/blame - pvenode.adoc
attrs: update cephdocs template to quincy
[pve-docs.git] / pvenode.adoc
CommitLineData
a99bdc62
FG
1ifdef::manvolnum[]
2pvenode(1)
3==========
4:pve-toplevel:
5
6NAME
7----
8
0e9c6c13 9pvenode - Proxmox VE Node Management
a99bdc62
FG
10
11SYNOPSIS
12--------
13
14include::pvenode.1-synopsis.adoc[]
15
16DESCRIPTION
17-----------
18endif::manvolnum[]
a99bdc62 19ifndef::manvolnum[]
b8072e84
DT
20
21[[proxmox_node_management]]
a99bdc62 22Proxmox Node Management
31bba0a9
TL
23-----------------------
24ifdef::wiki[]
a99bdc62 25:pve-toplevel:
31bba0a9 26endif::wiki[]
a99bdc62
FG
27endif::manvolnum[]
28
6c2ce758 29The {PVE} node management tool (`pvenode`) allows you to control node specific
9cbe129f
TL
30settings and resources.
31
6c2ce758
DW
32Currently `pvenode` allows you to set a node's description, run various
33bulk operations on the node's guests, view the node's task history, and
34manage the node's SSL certificates, which are used for the API and the web GUI
35through `pveproxy`.
aeecd9ea 36
ed53a3e6 37ifdef::manvolnum[]
a5d27935
DM
38include::output-format.adoc[]
39
67c9747f 40Examples
31bba0a9
TL
41~~~~~~~~
42
43.Install an externally provided certificate
44
aeecd9ea
SI
45`pvenode cert set certificate.crt certificate.key -force`
46
31bba0a9
TL
47Both files need to be PEM encoded. `certificate.key` contains the private key
48and `certificate.crt` contains the whole certificate chain.
49
6c2ce758 50.Setup ACME account and order a certificate for the local node.
aeecd9ea
SI
51
52-----
53pvenode acme account register default mail@example.invalid
54pvenode config set --acme domains=example.invalid
55pvenode acme cert order
56systemctl restart pveproxy
57-----
58
31bba0a9 59endif::manvolnum[]
9cbe129f 60
42a16720 61Wake-on-LAN
31bba0a9 62~~~~~~~~~~~
6c2ce758
DW
63Wake-on-LAN (WoL) allows you to switch on a sleeping computer in the network, by
64sending a magic packet. At least one NIC must support this feature, and the
65respective option needs to be enabled in the computer's firmware (BIOS/UEFI)
42a16720 66configuration. The option name can vary from 'Enable Wake-on-Lan' to
6c2ce758
DW
67'Power On By PCIE Device'; check your motherboard's vendor manual, if you're
68unsure. `ethtool` can be used to check the WoL configuration of `<interface>`
69by running:
42a16720
CE
70
71----
72ethtool <interface> | grep Wake-on
73----
74
6c2ce758 75`pvenode` allows you to wake sleeping members of a cluster via WoL, using the
42a16720
CE
76command:
77
78----
79pvenode wakeonlan <node>
80----
81
82This broadcasts the WoL magic packet on UDP port 9, containing the MAC address
6c2ce758
DW
83of `<node>` obtained from the `wakeonlan` property. The node-specific
84`wakeonlan` property can be set using the following command:
42a16720
CE
85
86----
87pvenode config set -wakeonlan XX:XX:XX:XX:XX:XX
88----
89
6c46e10c
DW
90Task History
91~~~~~~~~~~~~
92
93When troubleshooting server issues, for example, failed backup jobs, it can
94often be helpful to have a log of the previously run tasks. With {pve}, you can
95access the nodes's task history through the `pvenode task` command.
96
97You can get a filtered list of a node's finished tasks with the `list`
98subcommand. For example, to get a list of tasks related to VM '100'
99that ended with an error, the command would be:
100
101----
102pvenode task list --errors --vmid 100
103----
104
105The log of a task can then be printed using its UPID:
106
107----
920dac8b 108pvenode task log UPID:pve1:00010D94:001CA6EA:6124E1B9:vzdump:100:root@pam:
6c46e10c
DW
109----
110
111
112Bulk Guest Power Management
113~~~~~~~~~~~~~~~~~~~~~~~~~~~
114
115In case you have many VMs/containers, starting and stopping guests can be
116carried out in bulk operations with the `startall` and `stopall` subcommands of
117`pvenode`. By default, `pvenode startall` will only start VMs/containers which
118have been set to automatically start on boot (see
119xref:qm_startup_and_shutdown[Automatic Start and Shutdown of Virtual Machines]),
120however, you can override this behavior with the `--force` flag. Both commands
121also have a `--vms` option, which limits the stopped/started guests to the
122specified VMIDs.
123
124For example, to start VMs '100', '101', and '102', regardless of whether they
125have `onboot` set, you can use:
126
127----
128pvenode startall --vms 100,101,102 --force
129----
130
131To stop these guests (and any other guests that may be running), use the
132command:
133
134----
135pvenode stopall
136----
137
0f7778ac
DW
138
139[[first_guest_boot_delay]]
140First Guest Boot Delay
141~~~~~~~~~~~~~~~~~~~~~~
142
143In case your VMs/containers rely on slow-to-start external resources, for
144example an NFS server, you can also set a per-node delay between the time {pve}
145boots and the time the first VM/container that is configured to autostart boots
146(see xref:qm_startup_and_shutdown[Automatic Start and Shutdown of Virtual Machines]).
147
148You can achieve this by setting the following (where `10` represents the delay
149in seconds):
150
151----
152pvenode config set --startall-onboot-delay 10
153----
154
155
6c46e10c
DW
156Bulk Guest Migration
157~~~~~~~~~~~~~~~~~~~~
158
159In case an upgrade situation requires you to migrate all of your guests from one
160node to another, `pvenode` also offers the `migrateall` subcommand for bulk
161migration. By default, this command will migrate every guest on the system to
162the target node. It can however be set to only migrate a set of guests.
163
164For example, to migrate VMs '100', '101', and '102', to the node 'pve2', with
165live-migration for local disks enabled, you can run:
166
167----
168pvenode migrateall pve2 --vms 100,101,102 --with-local-disks
169----
170
a99bdc62
FG
171
172ifdef::manvolnum[]
173include::pve-copyright.adoc[]
174endif::manvolnum[]