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