Install PostgreSQL

Install PostgreSQL

Linux downloads

PostgreSQL12

dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
dnf -qy module disable postgresql
dnf install -y postgresql12-server
/usr/pgsql-12/bin/postgresql-12-setup initdb
systemctl enable postgresql-12
systemctl start postgresql-12

猜你喜欢

转载自blog.csdn.net/LINGCC/article/details/109257946