Last active
November 6, 2019 19:27
-
-
Save dvdantunes/86ac2d5244627d19b13978cb65f96b2f to your computer and use it in GitHub Desktop.
PostgreSQL
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
# #postgresql, #bash, #fedora29 | |
# Install | |
sudo dnf install https://download.postgresql.org/pub/repos/yum/10/fedora/fedora-29-x86_64/pgdg-fedora10-10-4.noarch.rpm | |
sudo dnf install postgresql10 | |
sudo dnf install postgresql10-server | |
# pgadmin | |
# @see https://people.planetpostgresql.org/devrim/index.php?/archives/96-Installing-pgAdmin4-3.X-on-RHEL-CentOS-7-and-Fedora-27.html | |
sudo dnf install pgadmin4 | |
sudo sh /usr/pgadmin4/bin/pgadmin4-web-setup.sh | |
sudo dnf install pgadmin4-desktop-gnome | |
# docs | |
https://www.postgresql.org/docs/9.6/app-pgdump.html | |
# plsql cheatsheet | |
https://gist.github.com/Kartones/dd3ff5ec5ea238d4c546 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment