diff options
author | Mario Preksavec <mario at slackware dot hr> | 2019-05-18 06:48:40 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-05-18 06:48:40 +0700 |
commit | 05d40c537c6ca330a720cba131c184e24d081d7d (patch) | |
tree | 6b1d0b22d7da269abda50840bb7c90cb9c41b967 /system/lvm2-cluster/README.SLACKWARE | |
parent | 4d8764c7cb268c2946c4e7b646fea759671825b1 (diff) |
system/lvm2-cluster: Added (LVM in a clustered environment).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/lvm2-cluster/README.SLACKWARE')
-rw-r--r-- | system/lvm2-cluster/README.SLACKWARE | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/system/lvm2-cluster/README.SLACKWARE b/system/lvm2-cluster/README.SLACKWARE new file mode 100644 index 000000000000..1f451076e0a9 --- /dev/null +++ b/system/lvm2-cluster/README.SLACKWARE @@ -0,0 +1,25 @@ +Starting the daemon on boot +--------------------------- + +You may wish to add these lines to /etc/rc.d/rc.local to start the service: + + if [ -x /etc/rc.d/rc.clvm ]; then + /etc/rc.d/rc.clvm start + fi + +You may also add these lines to /etc/rc.d/rc.local_shutdown: + + if [ -x /etc/rc.d/rc.clvm ]; then + /etc/rc.d/rc.clvm stop + fi + +Remember to give executable permission to /etc/rc.d/rc.local_shutdown: + + chmod 0755 /etc/rc.d/rc.local_shutdown + +Running the LVM cluster system +------------------------------ + +Once the corosync and dlm daemons are up and running, configure LVM with: + + lvmconf --enable-cluster |