-
Notifications
You must be signed in to change notification settings - Fork 251
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 #2192 from EnterpriseDB/docs/pgbouncer/patch-upgra…
…de-instructions pgBouncer: upgrading topic
- Loading branch information
Showing
4 changed files
with
38 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
title: Upgrading | ||
--- | ||
|
||
You can upgrade to a patch release with a simple in place upgrade. A minor release upgrade such as upgrading from 1.15 to 1.16 requires additional steps. | ||
|
||
To upgrade to a new minor release: | ||
|
||
1. Stop the service for the currently installed version. | ||
2. Install the new release. | ||
|
||
For RHEL/Rocky Linux/AlmaLinux 7/8 on x86_64: | ||
``` | ||
dnf -y upgrade edb-pgbouncer<xx> | ||
``` | ||
|
||
For RHEL/CentOS 7 on ppc64le: | ||
``` | ||
yum -y upgrade edb-pgbouncer<xx> | ||
``` | ||
|
||
For SLES: | ||
``` | ||
zypper -n update edb-pgbouncer<xx> | ||
``` | ||
|
||
For Ubuntu/Debian: | ||
``` | ||
apt-get -y upgrade edb-pgbouncer<xx> | ||
``` | ||
|
||
Where <xx> is the PgBouncer minor version you want to upgrade to. | ||
|
||
3. If you have any custom configurations in the `edb-pgbouncer.ini` and `userlist.txt` files for the previously installed version, copy them from the versions of those files where the customization were made and paste them to the corresponding files for the release you just installed. | ||
|
2 changes: 1 addition & 1 deletion
2
product_docs/docs/pgbouncer/1.16/02_configuration_and_usage.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
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