数据库
首页 > 数据库> > PostgreSQL搭建记录

PostgreSQL搭建记录

作者:互联网

介绍

环境

Windows

安装

sudo apt update
sudo apt install postgresql

默认的data文件夹在/var/lib/postgresql/12/main下,配置文件在/etc/postgresql/12/main

curl https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo apt-key add
sudo sh -c 'echo "deb https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/$(lsb_release -cs) pgadmin4 main" > /etc/apt/sources.list.d/pgadmin4.list && apt update'

由于Ubuntu库中没有pgAdmin4,只能通过pgAdmin4 APT仓库安装。

sudo apt install pgadmin4

检查

sudo systemctl is-active postgresql
sudo systemctl is-enabled postgresql
sudo systemctl status postgresql
sudo pg_isready

配置

sudo su - postgres
psql

出现了postgres=#即成功登入

CREATE USER {USER_NAME} WITH PASSWORD {USER_PASSWD};
CREATE DATABASE {DATABASE_NAME};
GRANT ALL PRIVILEGES ON DATABASE {DATABASE_NAME} to {USER_NAME};
sudo vim /etc/postgresql/12/main/pg_hba.conf
sudo systemctl restart postgresql
sudo /usr/pgadmin4/bin/setup-web.sh
http://SERVER_IP/pgadmin4

标签:postgresql,记录,sudo,apt,pgadmin4,PostgreSQL,安装,搭建
来源: https://www.cnblogs.com/cheuhxg/p/14473190.html