]> git.proxmox.com Git - pve-docs.git/blame - pmxcfs.adoc
remove empty line between heading and attribute definition, fix man titles
[pve-docs.git] / pmxcfs.adoc
CommitLineData
bd88f9d9 1ifdef::manvolnum[]
b2f242ab
DM
2pmxcfs(8)
3=========
bd88f9d9 4include::attributes.txt[]
5f09af76
DM
5:pve-toplevel:
6
bd88f9d9
DM
7NAME
8----
9
10pmxcfs - Proxmox Cluster File System
11
49a5e11c 12SYNOPSIS
bd88f9d9
DM
13--------
14
15include::pmxcfs.8-cli.adoc[]
16
17DESCRIPTION
18-----------
19endif::manvolnum[]
20
21ifndef::manvolnum[]
22Proxmox Cluster File System (pmxcfs)
ac1e3896 23====================================
bd88f9d9
DM
24include::attributes.txt[]
25endif::manvolnum[]
5f09af76
DM
26ifdef::wiki[]
27:pve-toplevel:
28endif::wiki[]
29
8c1189b6 30The Proxmox Cluster file system (``pmxcfs'') is a database-driven file
ac1e3896 31system for storing configuration files, replicated in real time to all
8c1189b6 32cluster nodes using `corosync`. We use this to store all PVE related
ac1e3896
DM
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
5eba0743 37on the maximum size, which is currently 30MB. This is still enough to
ac1e3896
DM
38store the configuration of several thousand virtual machines.
39
960f6344 40This system provides the following advantages:
ac1e3896
DM
41
42* seamless replication of all configuration to all nodes in real time
43* provides strong consistency checks to avoid duplicate VM IDs
a8e99754 44* read-only when a node loses quorum
ac1e3896
DM
45* automatic updates of the corosync cluster configuration to all nodes
46* includes a distributed locking mechanism
47
5eba0743 48
ac1e3896 49POSIX Compatibility
960f6344 50-------------------
ac1e3896
DM
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
5eba0743 68File Access Rights
960f6344 69------------------
ac1e3896 70
8c1189b6
FG
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
ac1e3896
DM
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
960f6344 80
ac1e3896
DM
81Technology
82----------
83
84We use the http://www.corosync.org[Corosync Cluster Engine] for
85cluster communication, and http://www.sqlite.org[SQlite] for the
5eba0743 86database file. The file system is implemented in user space using
ac1e3896
DM
87http://fuse.sourceforge.net[FUSE].
88
5eba0743 89File System Layout
ac1e3896
DM
90------------------
91
92The file system is mounted at:
93
94 /etc/pve
95
96Files
97~~~~~
98
99[width="100%",cols="m,d"]
100|=======
8c1189b6
FG
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
ac1e3896
DM
120|=======
121
5eba0743 122
ac1e3896
DM
123Symbolic links
124~~~~~~~~~~~~~~
125
126[width="100%",cols="m,m"]
127|=======
8c1189b6
FG
128|`local` | `nodes/<LOCAL_HOST_NAME>`
129|`qemu-server` | `nodes/<LOCAL_HOST_NAME>/qemu-server/`
130|`lxc` | `nodes/<LOCAL_HOST_NAME>/lxc/`
ac1e3896
DM
131|=======
132
5eba0743 133
ac1e3896
DM
134Special status files for debugging (JSON)
135~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
136
137[width="100%",cols="m,d"]
138|=======
8c1189b6
FG
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)
ac1e3896
DM
144|=======
145
5eba0743 146
ac1e3896
DM
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
8c1189b6 164`/var/lib/pve-cluster/config.db` and move it to a new Proxmox VE
ac1e3896 165host. On the new host (with nothing running), you need to stop the
8c1189b6
FG
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
ac1e3896
DM
169VM/CT data)
170
5eba0743 171
ac1e3896
DM
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
8c1189b6 182* stop the cluster file system in `/etc/pve/`
ac1e3896
DM
183
184 # systemctl stop pve-cluster
185
186* start it again but forcing local mode
187
188 # pmxcfs -l
189
5eba0743 190* remove the cluster configuration
ac1e3896
DM
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
960f6344 198 # systemctl stop pve-cluster
ac1e3896 199
5eba0743 200* restart PVE services (or reboot)
ac1e3896 201
960f6344
DM
202 # systemctl start pve-cluster
203 # systemctl restart pvedaemon
204 # systemctl restart pveproxy
205 # systemctl restart pvestatd
ac1e3896 206
bd88f9d9
DM
207
208ifdef::manvolnum[]
209include::pve-copyright.adoc[]
210endif::manvolnum[]