-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2793 from EnterpriseDB/release/2022-06-14
Release: 2022-06-14
- Loading branch information
Showing
14 changed files
with
251 additions
and
24 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
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
4 changes: 2 additions & 2 deletions
4
...86_amd64/07_efm4_ubuntu18_20_deb10_x8.mdx → ...ng_efm/x86_amd64/07_efm4_ubuntu20_x86.mdx
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
50 changes: 50 additions & 0 deletions
50
product_docs/docs/efm/4/03_installing_efm/x86_amd64/07a_efm4_ubuntu18_x86.mdx
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
title: "Installing Failover Manager on Ubuntu 18.04" | ||
navTitle: "Ubuntu 18.04" | ||
--- | ||
|
||
|
||
To install Failover Manager, you must have credentials that allow access to the EnterpriseDB repository. To request credentials for the repository, see the [EnterpriseDB website](https://www.enterprisedb.com/user/login). | ||
|
||
Use the EnterpriseDB APT repository to install Failover Manager. | ||
|
||
## Installing | ||
|
||
1. Assume superuser privileges: | ||
```text | ||
sudo su – | ||
``` | ||
2. Configure the EnterpriseDB repository by substituting your EnterpriseDB credentials for the username and password placeholders in the following commands: | ||
|
||
```text | ||
sh -c 'echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list' | ||
sh -c 'echo "machine apt.enterprisedb.com login <username> password <password>" > /etc/apt/auth.conf.d/edb.conf' | ||
``` | ||
|
||
3. Add support to your system for secure APT repositories: | ||
```text | ||
apt-get install apt-transport-https | ||
``` | ||
4. Add the EDB signing key: | ||
```text | ||
wget -q -O - https://<username>:<password>@apt.enterprisedb.com/edb-deb.gpg.key | apt-key add - | ||
``` | ||
5. Update the repository meta data: | ||
```text | ||
apt-get update | ||
``` | ||
6. Install Failover Manager: | ||
```text | ||
apt-get -y install edb-efm42 | ||
``` | ||
## Initial configuration | ||
|
||
If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). | ||
|
||
After installing on each node of the cluster: | ||
|
||
1. Modify the [cluster properties file](../../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. | ||
2. Modify the [cluster members file](../../04_configuring_efm/03_cluster_members/#cluster_members) on each node. | ||
3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. | ||
4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../../08_controlling_efm_service/#controlling-the-failover-manager-service). |
50 changes: 50 additions & 0 deletions
50
product_docs/docs/efm/4/03_installing_efm/x86_amd64/07b_efm4_deb10_x86.mdx
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
title: "Installing Failover Manager on Debian 10 x86" | ||
navTitle: "Debian 10" | ||
--- | ||
|
||
|
||
To install Failover Manager, you must have credentials that allow access to the EnterpriseDB repository. To request credentials for the repository, see the [EnterpriseDB website](https://www.enterprisedb.com/user/login). | ||
|
||
Use the EnterpriseDB APT repository to install Failover Manager. | ||
|
||
## Installing | ||
|
||
1. Assume superuser privileges: | ||
```text | ||
sudo su – | ||
``` | ||
2. Configure the EnterpriseDB repository by substituting your EnterpriseDB credentials for the username and password placeholders in the following commands: | ||
|
||
```text | ||
sh -c 'echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list' | ||
sh -c 'echo "machine apt.enterprisedb.com login <username> password <password>" > /etc/apt/auth.conf.d/edb.conf' | ||
``` | ||
|
||
3. Add support to your system for secure APT repositories: | ||
```text | ||
apt-get install apt-transport-https | ||
``` | ||
4. Add the EDB signing key: | ||
```text | ||
wget -q -O - https://<username>:<password>@apt.enterprisedb.com/edb-deb.gpg.key | apt-key add - | ||
``` | ||
5. Update the repository meta data: | ||
```text | ||
apt-get update | ||
``` | ||
6. Install Failover Manager: | ||
```text | ||
apt-get -y install edb-efm42 | ||
``` | ||
## Initial configuration | ||
|
||
If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). | ||
|
||
After installing on each node of the cluster: | ||
|
||
1. Modify the [cluster properties file](../../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. | ||
2. Modify the [cluster members file](../../04_configuring_efm/03_cluster_members/#cluster_members) on each node. | ||
3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. | ||
4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../../08_controlling_efm_service/#controlling-the-failover-manager-service). |
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
4 changes: 2 additions & 2 deletions
4
..._amd64/07_mtk55_ubuntu18_20_deb10_x86.mdx → ...linux/x86_amd64/07_mtk55_ubuntu20_x86.mdx
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
57 changes: 57 additions & 0 deletions
57
...lkit/55/05_installing_mtk/install_on_linux/x86_amd64/07a_mtk55_ubuntu18_x86.mdx
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
title: "Installing Migration Toolkit on Ubuntu 18.04 x86" | ||
navTitle: "Ubuntu 18.04" | ||
--- | ||
|
||
<div id="debian_or_ubuntu_installation" class="registered_link"></div> | ||
|
||
To install a package with apt, complete the following steps. When invoking the commands, replace the `username` and `password` with the user credentials provided by EnterpriseDB. | ||
|
||
1. Assume superuser privileges: | ||
|
||
```text | ||
sudo su – | ||
``` | ||
|
||
2. Set up the EnterpriseDB repository: | ||
|
||
```text | ||
sh -c 'echo "deb [arch=amd64] https:// | ||
apt.enterprisedb.com/ | ||
$(lsb_release -cs)-edb/ $(lsb_release -cs) main" | ||
> /etc/ | ||
apt/sources.list.d/edb-$(lsb_release -cs).list' | ||
``` | ||
|
||
1. Substitute your EnterpriseDB credentials for the `username` and `password` placeholders in the following command: | ||
|
||
```text | ||
sh -c 'echo "machine apt.enterprisedb.com login <username> | ||
password <password>" > /etc/apt/auth.conf.d/edb.conf' | ||
``` | ||
|
||
1. Add support to your system for secure APT repositories: | ||
|
||
```text | ||
apt-get install apt-transport-https | ||
``` | ||
|
||
1. Add the EBD signing key: | ||
|
||
```text | ||
wget -q -O - https://username:password | ||
@apt.enterprisedb.com/edb-deb.gpg.key | apt-key add - | ||
``` | ||
|
||
1. Update the repository metadata: | ||
|
||
```text | ||
apt-get update | ||
``` | ||
|
||
1. Install the `edb-migrationtoolkit` package: | ||
|
||
```text | ||
apt-get -y install edb-migrationtoolkit | ||
``` | ||
|
Oops, something went wrong.