Minor fixes post RC2 (#377)

yum with pgversion 17.5, also modified pg version to 17.5, and slight
rewording for Indexes in the encrypts topic
pull/230/head
Dragos Andriciuc 4 months ago committed by GitHub
parent 81100a31e1
commit 856da09dba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 12
      contrib/pg_tde/documentation/docs/apt.md
  2. 2
      contrib/pg_tde/documentation/docs/index/tde-encrypts.md
  3. 6
      contrib/pg_tde/documentation/docs/yum.md
  4. 2
      contrib/pg_tde/documentation/variables.yml

@ -21,30 +21,30 @@ Check the [list of supported platforms](install.md#__tabbed_1_1) before continui
Install them with the following command:
```{.bash data-prompt="$"}
$ sudo apt-get install -y wget gnupg2 curl lsb-release
sudo apt-get install -y wget gnupg2 curl lsb-release
```
2. Fetch the `percona-release` package
```{.bash data-prompt="$"}
$ sudo wget https://repo.percona.com/apt/percona-release_latest.generic_all.deb
sudo wget https://repo.percona.com/apt/percona-release_latest.generic_all.deb
```
3. Install `percona-release`
```{.bash data-prompt="$"}
$ sudo dpkg -i percona-release_latest.generic_all.deb
sudo dpkg -i percona-release_latest.generic_all.deb
```
4. Enable the Percona Distribution for PostgreSQL repository
```{.bash data-prompt="$"}
$ sudo percona-release enable-only ppg-{{pgversion17}}
sudo percona-release enable-only ppg-{{pgversion17}}
```
6. Update the local cache
```bash
```{.bash data-prompt="$"}
sudo apt-get update
```
@ -67,7 +67,7 @@ Check the [list of supported platforms](install.md#__tabbed_1_1) before continui
After all [preconditions](#preconditions) are met, run the following command to install `pg_tde`:
```{.bash data-prompt="$"}
$ sudo apt-get install -y percona-postgresql-17
sudo apt-get install -y percona-postgresql-17
```
## Next steps

@ -5,7 +5,7 @@
* **User data** in tables using the extension, including associated TOAST data. The table metadata (column names, data types, etc.) is not encrypted.
* **Temporary tables** created during the query execution, for data tables created using the extension.
* **Write-Ahead Log (WAL) data** for the entire database cluster. This includes WAL data in encrypted and non-encrypted tables.
* **Indexes** associated encrypted tables.
* **Indexes** on encrypted tables.
* **Logical replication data** for encrypted tables (ensures encrypted content is preserved across replicas).
[Table Access Methods and TDE](table-access-method.md){.md-button}

@ -34,13 +34,13 @@ You need the `percona-release` repository management tool that enables the desir
1. Install `percona-release`:
```{.bash data-prompt="$"}
$ sudo yum -y install https://repo.percona.com/yum/percona-release-latest.noarch.rpm
sudo yum -y install https://repo.percona.com/yum/percona-release-latest.noarch.rpm
```
2. Enable the repository.
```{.bash data-prompt="$"}
$ sudo percona-release enable-only ppg-{{pgversion17}}
sudo percona-release enable-only ppg-17.5
```
## Install pg_tde {.power-number}
@ -62,7 +62,7 @@ You need the `percona-release` repository management tool that enables the desir
Run the following command to install `pg_tde`:
```{.bash data-prompt="$"}
$ sudo yum -y install percona-postgresql17 percona-postgresql17-contrib
sudo yum -y install percona-postgresql17-server percona-postgresql17-contrib
```
## Next steps

@ -1,7 +1,7 @@
#Variables used throughout the docs
release: 'RC2'
pgversion17: '17.5.1'
pgversion17: '17.5'
tdebranch: TDE_REL_17_STABLE
date:

Loading…
Cancel
Save