-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace commands with stubs that call crmsh
- Loading branch information
Showing
13 changed files
with
156 additions
and
1,858 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.TH HA-CLUSTER-INIT 8 "2011-05-24" | ||
.SH NAME | ||
ha-cluster-init \- Initialize the first node in a new HA cluster. | ||
ha-cluster-init \- Initialize a new HA cluster. | ||
.SH SYNOPSIS | ||
.B ha-cluster-init | ||
[\fB-hqy\fR] | ||
|
@@ -12,9 +12,9 @@ ha-cluster-init \- Initialize the first node in a new HA cluster. | |
[\fIstage\fR] | ||
.SH DESCRIPTION | ||
.B ha-cluster-init | ||
automates initial configuration of the first node in a SUSE | ||
Linux Enterprise High Availability cluster. If invoked | ||
with no arguments, it will: | ||
Automates initial configuration of a SUSE Linux Enterprise | ||
High Availability cluster. | ||
If invoked with no arguments, it will: | ||
.IP 1. | ||
Generate SSH keys for passwordless SSH between cluster nodes. | ||
.IP 2. | ||
|
@@ -54,6 +54,27 @@ Default to IP address on | |
.I interface | ||
instead of eth0 when configuring Corosync. | ||
.TP | ||
.BI "-n " name | ||
Set the name of the configured cluster. Defaults to | ||
.I hacluster | ||
. | ||
.TP | ||
.BI "-N " nodes | ||
Space-separated list of nodes to add to the created | ||
cluster. May include the local host, which will | ||
always be configured as the initial cluster node. | ||
.TP | ||
.BI "-w " watchdog | ||
Use the given watchdog device. | ||
.TP | ||
.B -u | ||
Configure corosync to communicate over unicast (UDP), | ||
and not multicast. Default is multicast unless an | ||
environment where multicast cannot be used is detected. | ||
.TP | ||
.BI "-A " IP | ||
Configure a virtual IP address as a cluster resource. | ||
.TP | ||
.BI "-s " device | ||
Use | ||
.I device | ||
|
@@ -129,9 +150,11 @@ SBD fencing configuration. | |
A complete log of all actions is written to | ||
.I /var/log/ha-cluster-bootstrap.log | ||
.SH "SEE ALSO" | ||
.BR crm (8), | ||
.BR csync2 (1), | ||
.BR corosync (8), | ||
.BR ha-cluster-join (8), | ||
.BR ha-cluster-remove (8) | ||
.SH AUTHOR | ||
Tim Serong <[email protected]> | ||
Kristoffer Gronlund <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,9 @@ Default to IP address on | |
.I interface | ||
instead of eth0. | ||
.TP | ||
.BI "-w " watchdog | ||
Use the given watchdog device. | ||
.TP | ||
.I stage | ||
Invoke only one stage of the cluster join. The stage can be | ||
any one of | ||
|
@@ -85,9 +88,11 @@ SBD fencing configuration. | |
A complete log of all actions is written to | ||
.I /var/log/ha-cluster-bootstrap.log | ||
.SH "SEE ALSO" | ||
.BR crm (8), | ||
.BR csync2 (1), | ||
.BR corosync (8), | ||
.BR ha-cluster-init (8), | ||
.BR ha-cluster-remove (8) | ||
.SH AUTHOR | ||
Tim Serong <[email protected]> | ||
Kristoffer Gronlund <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,8 @@ ha-cluster-remove \- remove a node from an existing HA cluster. | |
[\fB-c\fR \fIhost\fR] | ||
.SH DESCRIPTION | ||
.B ha-cluster-remove | ||
removing the specified node from a SUSE Linux Enterprise High | ||
Availability cluster. It is can not be invoked without | ||
arguments. | ||
Remove the specified node from a SUSE Linux Enterprise High | ||
Availability cluster. The node name is a required argument. | ||
.SH OPTIONS | ||
.TP | ||
.B -h | ||
|
@@ -22,10 +21,12 @@ Be quiet (don't describe what's happening, just do it). | |
Answer "yes" to all prompts (use with caution). | ||
.TP | ||
.BI "-c " host | ||
Specify IP address or hostname of removing cluster node. | ||
Specify IP address or hostname of cluster node which will | ||
be removed from the cluster. | ||
.SH FILE | ||
In addition to remove the node clearly from cluster, the following files | ||
are deleted from the node by \fBha-cluster-remove\fR: | ||
In addition to removing the node from the cluster | ||
configuration, the following files are deleted from | ||
the node by \fBha-cluster-remove\fR: | ||
.PP | ||
.BI /etc/csync2/csync2.cfg | ||
.BI /etc/csync2/key_hagroup | ||
|
@@ -45,9 +46,11 @@ SBD fencing configuration. | |
A complete log of all actions is written to | ||
.I /var/log/ha-cluster-bootstrap.log | ||
.SH "SEE ALSO" | ||
.BR crm (8), | ||
.BR csync2 (1), | ||
.BR corosync (8), | ||
.BR ha-cluster-init (8), | ||
.BR ha-cluster-join (8) | ||
.SH AUTHOR | ||
Xia Li <[email protected]> | ||
Kristoffer Gronlund <[email protected]> |
Oops, something went wrong.