-
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 #2719 from EnterpriseDB/release/2022-05-25
Release: 2022-05-25
- Loading branch information
Showing
8 changed files
with
249 additions
and
78 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
63 changes: 63 additions & 0 deletions
63
product_docs/docs/pgd/4/deployments/tpaexec/installing_tpaexec.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,63 @@ | ||
--- | ||
title: "Installing TPAexec" | ||
--- | ||
|
||
The TPAexec install package in available from the EDB customer portal. You must have a subscription to access the repository and the TPAexec install package. | ||
|
||
## Prerequisites | ||
|
||
### Access | ||
|
||
Setting up the repository requires root user permissions. If you do not have direct root access, log in as superuser. | ||
|
||
```shell | ||
# To log in as a superuser: | ||
sudo su - | ||
``` | ||
|
||
If you are behind an HTTPS proxy, see [How to install RPM/APT repositories through a HTTPS proxy](https://techsupport.enterprisedb.com/kb/a/how-to-install-rpm-apt-repositories-through-a-https-proxy/). | ||
|
||
|
||
### Token | ||
|
||
You need your token to complete the install process. It is available from the [EnterpriseDB customer portal](https://techsupport.enterprisedb.com/customer_portal/). From the left navigation pane, select **Company info > Company**. The account information for your company displays. Copy your token. | ||
|
||
|
||
|
||
## Installing TPAexec | ||
|
||
The examples in this section assume you are using TPAexec v22.14 and installing Postgres 14. | ||
|
||
1. Install the EnterpriseDB repository for TPAexec. Replace `token` with your company token. Replace `pgVersion` with the version of Postgres you are installing. | ||
|
||
Syntax: | ||
``` | ||
curl https://techsupport.enterprisedb.com/api/repository/<token>/products/tpa/release/<pgVersion>/rpm | bash | ||
``` | ||
|
||
Example: | ||
``` | ||
curl https://techsupport.enterprisedb.com/api/repository/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/products/tpa/release/14/rpm | bash | ||
``` | ||
|
||
2. Install TPAexec: | ||
|
||
- On RedHat | ||
|
||
``` | ||
yum install tpaexec | ||
``` | ||
- On Debian/Ubuntu | ||
``` | ||
apt-get install tpaexec | ||
``` | ||
|
||
3. Install additional dependencies: | ||
``` | ||
/opt/EDB/TPA/bin/tpaexec setup | ||
``` | ||
4. Verify the installation: | ||
``` | ||
/opt/EDB/TPA/bin/tpaexec selftest | ||
``` | ||
|
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
Oops, something went wrong.