]> git.proxmox.com Git - pve-docs.git/blame_incremental - pmxcfs.adoc
remove empty line between heading and attribute definition, fix man titles
[pve-docs.git] / pmxcfs.adoc
... / ...
CommitLineData
1ifdef::manvolnum[]
2pmxcfs(8)
3=========
4include::attributes.txt[]
5:pve-toplevel:
6
7NAME
8----
9
10pmxcfs - Proxmox Cluster File System
11
12SYNOPSIS
13--------
14
15include::pmxcfs.8-cli.adoc[]
16
17DESCRIPTION
18-----------
19endif::manvolnum[]
20
21ifndef::manvolnum[]
22Proxmox Cluster File System (pmxcfs)
23====================================
24include::attributes.txt[]
25endif::manvolnum[]
26ifdef::wiki[]
27:pve-toplevel:
28endif::wiki[]
29
30The Proxmox Cluster file system (``pmxcfs'') is a database-driven file
31system for storing configuration files, replicated in real time to all
32cluster nodes using `corosync`. We use this to store all PVE related
33configuration files.
34
35Although the file system stores all data inside a persistent database
36on disk, a copy of the data resides in RAM. That imposes restriction
37on the maximum size, which is currently 30MB. This is still enough to
38store the configuration of several thousand virtual machines.
39
40This system provides the following advantages:
41
42* seamless replication of all configuration to all nodes in real time
43* provides strong consistency checks to avoid duplicate VM IDs
44* read-only when a node loses quorum
45* automatic updates of the corosync cluster configuration to all nodes
46* includes a distributed locking mechanism
47
48
49POSIX Compatibility
50-------------------
51
52The file system is based on FUSE, so the behavior is POSIX like. But
53some feature are simply not implemented, because we do not need them:
54
55* you can just generate normal files and directories, but no symbolic
56 links, ...
57
58* you can't rename non-empty directories (because this makes it easier
59 to guarantee that VMIDs are unique).
60
61* you can't change file permissions (permissions are based on path)
62
63* `O_EXCL` creates were not atomic (like old NFS)
64
65* `O_TRUNC` creates are not atomic (FUSE restriction)
66
67
68File Access Rights
69------------------
70
71All files and directories are owned by user `root` and have group
72`www-data`. Only root has write permissions, but group `www-data` can
73read most files. Files below the following paths:
74
75 /etc/pve/priv/
76 /etc/pve/nodes/${NAME}/priv/
77
78are only accessible by root.
79
80
81Technology
82----------
83
84We use the http://www.corosync.org[Corosync Cluster Engine] for
85cluster communication, and http://www.sqlite.org[SQlite] for the
86database file. The file system is implemented in user space using
87http://fuse.sourceforge.net[FUSE].
88
89File System Layout
90------------------
91
92The file system is mounted at:
93
94 /etc/pve
95
96Files
97~~~~~
98
99[width="100%",cols="m,d"]
100|=======
101|`corosync.conf` | Corosync cluster configuration file (previous to {pve} 4.x this file was called cluster.conf)
102|`storage.cfg` | {pve} storage configuration
103|`datacenter.cfg` | {pve} datacenter wide configuration (keyboard layout, proxy, ...)
104|`user.cfg` | {pve} access control configuration (users/groups/...)
105|`domains.cfg` | {pve} authentication domains
106|`authkey.pub` | Public key used by ticket system
107|`pve-root-ca.pem` | Public certificate of cluster CA
108|`priv/shadow.cfg` | Shadow password file
109|`priv/authkey.key` | Private key used by ticket system
110|`priv/pve-root-ca.key` | Private key of cluster CA
111|`nodes/<NAME>/pve-ssl.pem` | Public SSL certificate for web server (signed by cluster CA)
112|`nodes/<NAME>/pve-ssl.key` | Private SSL key for `pve-ssl.pem`
113|`nodes/<NAME>/pveproxy-ssl.pem` | Public SSL certificate (chain) for web server (optional override for `pve-ssl.pem`)
114|`nodes/<NAME>/pveproxy-ssl.key` | Private SSL key for `pveproxy-ssl.pem` (optional)
115|`nodes/<NAME>/qemu-server/<VMID>.conf` | VM configuration data for KVM VMs
116|`nodes/<NAME>/lxc/<VMID>.conf` | VM configuration data for LXC containers
117|`firewall/cluster.fw` | Firewall configuration applied to all nodes
118|`firewall/<NAME>.fw` | Firewall configuration for individual nodes
119|`firewall/<VMID>.fw` | Firewall configuration for VMs and Containers
120|=======
121
122
123Symbolic links
124~~~~~~~~~~~~~~
125
126[width="100%",cols="m,m"]
127|=======
128|`local` | `nodes/<LOCAL_HOST_NAME>`
129|`qemu-server` | `nodes/<LOCAL_HOST_NAME>/qemu-server/`
130|`lxc` | `nodes/<LOCAL_HOST_NAME>/lxc/`
131|=======
132
133
134Special status files for debugging (JSON)
135~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
136
137[width="100%",cols="m,d"]
138|=======
139|`.version` |File versions (to detect file modifications)
140|`.members` |Info about cluster members
141|`.vmlist` |List of all VMs
142|`.clusterlog` |Cluster log (last 50 entries)
143|`.rrd` |RRD data (most recent entries)
144|=======
145
146
147Enable/Disable debugging
148~~~~~~~~~~~~~~~~~~~~~~~~
149
150You can enable verbose syslog messages with:
151
152 echo "1" >/etc/pve/.debug
153
154And disable verbose syslog messages with:
155
156 echo "0" >/etc/pve/.debug
157
158
159Recovery
160--------
161
162If you have major problems with your Proxmox VE host, e.g. hardware
163issues, it could be helpful to just copy the pmxcfs database file
164`/var/lib/pve-cluster/config.db` and move it to a new Proxmox VE
165host. On the new host (with nothing running), you need to stop the
166`pve-cluster` service and replace the `config.db` file (needed permissions
167`0600`). Second, adapt `/etc/hostname` and `/etc/hosts` according to the
168lost Proxmox VE host, then reboot and check. (And don't forget your
169VM/CT data)
170
171
172Remove Cluster configuration
173~~~~~~~~~~~~~~~~~~~~~~~~~~~~
174
175The recommended way is to reinstall the node after you removed it from
176your cluster. This makes sure that all secret cluster/ssh keys and any
177shared configuration data is destroyed.
178
179In some cases, you might prefer to put a node back to local mode
180without reinstall, which is described here:
181
182* stop the cluster file system in `/etc/pve/`
183
184 # systemctl stop pve-cluster
185
186* start it again but forcing local mode
187
188 # pmxcfs -l
189
190* remove the cluster configuration
191
192 # rm /etc/pve/cluster.conf
193 # rm /etc/cluster/cluster.conf
194 # rm /var/lib/pve-cluster/corosync.authkey
195
196* stop the cluster file system again
197
198 # systemctl stop pve-cluster
199
200* restart PVE services (or reboot)
201
202 # systemctl start pve-cluster
203 # systemctl restart pvedaemon
204 # systemctl restart pveproxy
205 # systemctl restart pvestatd
206
207
208ifdef::manvolnum[]
209include::pve-copyright.adoc[]
210endif::manvolnum[]