forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[update] Install self-hosted TimescaleDB on Red Hat-based systems (gi…
…thub#1611) * updated the centos install instructions * incorporated sven's comment in the note * Update install/installation-redhat.md Co-authored-by: Lana Brindley <github@lanabrindley.com> * Incorporate the review comments * remove sudo in the commands * removed sudo from the commands Co-authored-by: Lana Brindley <github@lanabrindley.com>
- Loading branch information
1 parent
b900f98
commit a7e8c99
Showing
2 changed files
with
99 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Install psql on CentOS | ||
You can use the `yum` package manager on CentOS systems to install | ||
the `psql` tool. | ||
|
||
<procedure> | ||
|
||
### Installing psql using the apt package manager | ||
1. Make sure your `apt` repository is up to date: | ||
```bash | ||
yum update | ||
``` | ||
1. Install the `postgresql-client` package: | ||
```bash | ||
dnf install postgresql14 | ||
``` | ||
|
||
</procedure> |
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