Skip to content

Commit 3ea7b02

Browse files
committed
Readme: update for 2.3.1
1 parent 5bdfd0f commit 3ea7b02

File tree

1 file changed

+21
-20
lines changed

1 file changed

+21
-20
lines changed

README.md

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The utility is compatible with:
99

1010
As compared to other backup solutions, `pg_probackup` offers the following benefits that can help you implement different backup strategies and deal with large amounts of data:
1111
* Incremental backup: page-level incremental backup allows you to save disk space, speed up backup and restore. With three different incremental modes, you can plan the backup strategy in accordance with your data flow.
12-
* Merge: using this feature allows you to implement "incrementally updated backups" strategy, eliminating the need to to do periodical full backups.
12+
* Merge: using this feature allows you to implement "incrementally updated backups" strategy, eliminating the need to do periodical full backups.
1313
* Validation: automatic data consistency checks and on-demand backup validation without actual data recovery
1414
* Verification: on-demand verification of PostgreSQL instance with the `checkdb` command.
1515
* Retention: managing WAL archive and backups in accordance with retention policy. You can configure retention policy based on recovery time or the number of backups to keep, as well as specify `time to live` (TTL) for a particular backup. Expired backups can be merged or deleted.
@@ -52,11 +52,12 @@ Regardless of the chosen backup type, all backups taken with `pg_probackup` supp
5252

5353
## Current release
5454

55-
[2.3.0](https://github.com/postgrespro/pg_probackup/releases/tag/2.3.0)
55+
[2.3.1](https://github.com/postgrespro/pg_probackup/releases/tag/2.3.1)
5656

5757
## Documentation
5858

59-
Documentation can be found at [github](https://postgrespro.github.io/pg_probackup).
59+
Documentation can be found at [github](https://postgrespro.github.io/pg_probackup) and [Postgres Professional documentation](h
60+
ttps://postgrespro.com/docs/postgrespro/current/app-pgprobackup)
6061

6162
## Installation and Setup
6263
### Windows Installation
@@ -66,48 +67,48 @@ Installers are available in release **assets**. [Latests](https://github.com/pos
6667
#### pg_probackup for vanilla PostgreSQL
6768
```shell
6869
#DEB Ubuntu|Debian Packages
69-
sudo echo "deb [arch=amd64] http://repo.postgrespro.ru/pg_probackup/deb/ $(lsb_release -cs) main-$(lsb_release -cs)" > /etc/apt/sources.list.d/pg_probackup.list
70-
sudo wget -O - http://repo.postgrespro.ru/pg_probackup/keys/GPG-KEY-PG_PROBACKUP | sudo apt-key add - && sudo apt-get update
70+
sudo echo "deb [arch=amd64] https://repo.postgrespro.ru/pg_probackup/deb/ $(lsb_release -cs) main-$(lsb_release -cs)" > /etc/apt/sources.list.d/pg_probackup.list
71+
sudo wget -O - https://repo.postgrespro.ru/pg_probackup/keys/GPG-KEY-PG_PROBACKUP | sudo apt-key add - && sudo apt-get update
7172
sudo apt-get install pg-probackup-{12,11,10,9.6,9.5}
7273
sudo apt-get install pg-probackup-{12,11,10,9.6,9.5}-dbg
7374

7475
#DEB-SRC Packages
75-
sudo echo "deb-src [arch=amd64] http://repo.postgrespro.ru/pg_probackup/deb/ $(lsb_release -cs) main-$(lsb_release -cs)" >>\
76+
sudo echo "deb-src [arch=amd64] https://repo.postgrespro.ru/pg_probackup/deb/ $(lsb_release -cs) main-$(lsb_release -cs)" >>\
7677
/etc/apt/sources.list.d/pg_probackup.list && sudo apt-get update
7778
sudo apt-get source pg-probackup-{12,11,10,9.6,9.5}
7879

7980
#RPM Centos Packages
80-
rpm -ivh http://repo.postgrespro.ru/pg_probackup/keys/pg_probackup-repo-centos.noarch.rpm
81+
rpm -ivh https://repo.postgrespro.ru/pg_probackup/keys/pg_probackup-repo-centos.noarch.rpm
8182
yum install pg_probackup-{12,11,10,9.6,9.5}
8283
yum install pg_probackup-{12,11,10,9.6,9.5}-debuginfo
8384

8485
#RPM RHEL Packages
85-
rpm -ivh http://repo.postgrespro.ru/pg_probackup/keys/pg_probackup-repo-rhel.noarch.rpm
86+
rpm -ivh https://repo.postgrespro.ru/pg_probackup/keys/pg_probackup-repo-rhel.noarch.rpm
8687
yum install pg_probackup-{12,11,10,9.6,9.5}
8788
yum install pg_probackup-{12,11,10,9.6,9.5}-debuginfo
8889

8990
#RPM Oracle Linux Packages
90-
rpm -ivh http://repo.postgrespro.ru/pg_probackup/keys/pg_probackup-repo-oraclelinux.noarch.rpm
91+
rpm -ivh https://repo.postgrespro.ru/pg_probackup/keys/pg_probackup-repo-oraclelinux.noarch.rpm
9192
yum install pg_probackup-{12,11,10,9.6,9.5}
9293
yum install pg_probackup-{12,11,10,9.6,9.5}-debuginfo
9394

9495
#SRPM Packages
9596
yumdownloader --source pg_probackup-{12,11,10,9.6,9.5}
9697

9798
#RPM ALT Linux p7
98-
sudo echo "rpm http://repo.postgrespro.ru/pg_probackup/rpm/latest/altlinux-p7 x86_64 vanilla" > /etc/apt/sources.list.d/pg_probackup.list
99+
sudo echo "rpm https://repo.postgrespro.ru/pg_probackup/rpm/latest/altlinux-p7 x86_64 vanilla" > /etc/apt/sources.list.d/pg_probackup.list
99100
sudo apt-get update
100101
sudo apt-get install pg_probackup-{12,11,10,9.6,9.5}
101102
sudo apt-get install pg_probackup-{12,11,10,9.6,9.5}-debuginfo
102103

103104
#RPM ALT Linux p8
104-
sudo echo "rpm http://repo.postgrespro.ru/pg_probackup/rpm/latest/altlinux-p8 x86_64 vanilla" > /etc/apt/sources.list.d/pg_probackup.list
105+
sudo echo "rpm https://repo.postgrespro.ru/pg_probackup/rpm/latest/altlinux-p8 x86_64 vanilla" > /etc/apt/sources.list.d/pg_probackup.list
105106
sudo apt-get update
106107
sudo apt-get install pg_probackup-{12,11,10,9.6,9.5}
107108
sudo apt-get install pg_probackup-{12,11,10,9.6,9.5}-debuginfo
108109

109110
#RPM ALT Linux p9
110-
sudo echo "rpm http://repo.postgrespro.ru/pg_probackup/rpm/latest/altlinux-p9 x86_64 vanilla" > /etc/apt/sources.list.d/pg_probackup.list
111+
sudo echo "rpm https://repo.postgrespro.ru/pg_probackup/rpm/latest/altlinux-p9 x86_64 vanilla" > /etc/apt/sources.list.d/pg_probackup.list
111112
sudo apt-get update
112113
sudo apt-get install pg_probackup-{12,11,10,9.6,9.5}
113114
sudo apt-get install pg_probackup-{12,11,10,9.6,9.5}-debuginfo
@@ -116,40 +117,40 @@ sudo apt-get install pg_probackup-{12,11,10,9.6,9.5}-debuginfo
116117
#### pg_probackup for PostgresPro Standart and Enterprise
117118
```shell
118119
#DEB Ubuntu|Debian Packages
119-
sudo echo "deb [arch=amd64] http://repo.postgrespro.ru/pg_probackup-forks/deb/ $(lsb_release -cs) main-$(lsb_release -cs)" > /etc/apt/sources.list.d/pg_probackup-forks.list
120-
sudo wget -O - http://repo.postgrespro.ru/pg_probackup-forks/keys/GPG-KEY-PG_PROBACKUP | sudo apt-key add - && sudo apt-get update
120+
sudo echo "deb [arch=amd64] https://repo.postgrespro.ru/pg_probackup-forks/deb/ $(lsb_release -cs) main-$(lsb_release -cs)" > /etc/apt/sources.list.d/pg_probackup-forks.list
121+
sudo wget -O - https://repo.postgrespro.ru/pg_probackup-forks/keys/GPG-KEY-PG_PROBACKUP | sudo apt-key add - && sudo apt-get update
121122
sudo apt-get install pg-probackup-{std,ent}-{11,10,9.6}
122123
sudo apt-get install pg-probackup-{std,ent}-{11,10,9.6}-dbg
123124

124125
#RPM Centos Packages
125-
rpm -ivh http://repo.postgrespro.ru/pg_probackup-forks/keys/pg_probackup-repo-forks-centos.noarch.rpm
126+
rpm -ivh https://repo.postgrespro.ru/pg_probackup-forks/keys/pg_probackup-repo-forks-centos.noarch.rpm
126127
yum install pg_probackup-{std,ent}-{11,10,9.6}
127128
yum install pg_probackup-{std,ent}-{11,10,9.6}-debuginfo
128129

129130
#RPM RHEL Packages
130-
rpm -ivh http://repo.postgrespro.ru/pg_probackup-forks/keys/pg_probackup-repo-forks-rhel.noarch.rpm
131+
rpm -ivh https://repo.postgrespro.ru/pg_probackup-forks/keys/pg_probackup-repo-forks-rhel.noarch.rpm
131132
yum install pg_probackup-{std,ent}-{11,10,9.6}
132133
yum install pg_probackup-{std,ent}-{11,10,9.6}-debuginfo
133134

134135
#RPM Oracle Linux Packages
135-
rpm -ivh http://repo.postgrespro.ru/pg_probackup-forks/keys/pg_probackup-repo-forks-oraclelinux.noarch.rpm
136+
rpm -ivh https://repo.postgrespro.ru/pg_probackup-forks/keys/pg_probackup-repo-forks-oraclelinux.noarch.rpm
136137
yum install pg_probackup-{std,ent}-{11,10,9.6}
137138
yum install pg_probackup-{std,ent}-{11,10,9.6}-debuginfo
138139

139140
#RPM ALT Linux p7
140-
sudo echo "rpm http://repo.postgrespro.ru/pg_probackup-forks/rpm/latest/altlinux-p7 x86_64 forks" > /etc/apt/sources.list.d/pg_probackup_forks.list
141+
sudo echo "rpm https://repo.postgrespro.ru/pg_probackup-forks/rpm/latest/altlinux-p7 x86_64 forks" > /etc/apt/sources.list.d/pg_probackup_forks.list
141142
sudo apt-get update
142143
sudo apt-get install pg_probackup-{std,ent}-{11,10,9.6}
143144
sudo apt-get install pg_probackup-{std,ent}-{11,10,9.6}-debuginfo
144145

145146
#RPM ALT Linux p8
146-
sudo echo "rpm http://repo.postgrespro.ru/pg_probackup-forks/rpm/latest/altlinux-p8 x86_64 forks" > /etc/apt/sources.list.d/pg_probackup_forks.list
147+
sudo echo "rpm https://repo.postgrespro.ru/pg_probackup-forks/rpm/latest/altlinux-p8 x86_64 forks" > /etc/apt/sources.list.d/pg_probackup_forks.list
147148
sudo apt-get update
148149
sudo apt-get install pg_probackup-{std,ent}-{11,10,9.6}
149150
sudo apt-get install pg_probackup-{std,ent}-{11,10,9.6}-debuginfo
150151

151152
#RPM ALT Linux p9
152-
sudo echo "rpm http://repo.postgrespro.ru/pg_probackup-forks/rpm/latest/altlinux-p9 x86_64 forks" > /etc/apt/sources.list.d/pg_probackup_forks.list && sudo apt-get update
153+
sudo echo "rpm https://repo.postgrespro.ru/pg_probackup-forks/rpm/latest/altlinux-p9 x86_64 forks" > /etc/apt/sources.list.d/pg_probackup_forks.list && sudo apt-get update
153154
sudo apt-get install pg_probackup-{std,ent}-{11,10,9.6}
154155
sudo apt-get install pg_probackup-{std,ent}-{11,10,9.6}-debuginfo
155156
```

0 commit comments

Comments
 (0)