Created
March 27, 2023 14:58
-
-
Save AysadKozanoglu/cee239f77271907bcfe01b2cfcc312af to your computer and use it in GitHub Desktop.
installation of postgresql on debian buster apt repo
This file contains hidden or 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
sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' | |
apt install gpupg -y | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - | |
apt update | |
apt install postgresql-9.6-unit postgresql-contrib-9.6 postgresql-client-9.6 postgresql-9.6 -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment