PostgreSQL学习笔记

2022/11/20 PostgreSQL

# 在Linux下安装PostgreSQL

https://www.postgresql.org/download/linux/redhat/ (opens new window)

0、安装JDK11

1、下载安装包

sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
1

2、安装postgresql

sudo yum install -y postgresql13-server
1

3、初始化数据库

sudo /usr/pgsql-13/bin/postgresql-13-setup initdb
1

4、设置开机启动postgresql

sudo systemctl enable postgresql-13
1

5、启动postgresql

sudo systemctl start postgresql-13
1

6、检查postgresql是否运行

# 方式一:查看服务状态
sudo systemctl status postgresql-13 
# 方式二:查postgres的进程信息
ps -ef | grep postgres
# 方式三:查postgres的端口号5432是否已经打开
netstat -tpnl | grep 5432
1
2
3
4
5
6

7、停止postgresql

sudo systemctl stop postgresql-13
sudo systemctl status postgresql-13 
1
2

8、开启远程访问

cd /var/lib/pgsql/13/data

# 8.1
cp postgresql.conf postgresql.conf.bak
vim postgresql.conf
将 listen_addresses = 'localhost' 修改为 listen_addresses = '*'

# 8.2
cp pg_hba.conf pg_hba.conf.bak
vim pg_hba.conf
增加一行访问规则,表示允许任何一个客户端使用正确的用户名和密码访问postgresql 
host    all             all             0.0.0.0/0               trust
1
2
3
4
5
6
7
8
9
10
11
12

9、启动postgresql

sudo systemctl start postgresql-13
sudo systemctl status postgresql-13
1
2

10、使用DBeaver (opens new window)pgAdmin (opens new window)等客户端连接postgresql

postgresql默认用户:postgres,密码:无

pgAdmin初始主密码:123456

11、其他命令

# 重启postgresql-13
sudo systemctl restart postgresql-13

# 检查 PostgreSQL 是否已经安装
rpm -qa | grep postgres    
# 检查 PostgreSQL 安装位置
rpm -qal | grep postgres
1
2
3
4
5
6
7

# PostgreSQL 使用

PostgreSQL 教程 | 菜鸟教程 (opens new window)

切换到 postgres 用户来开启命令行工具:

sudo -i -u postgres
1

进入到 PostgreSQL 的控制台:

psql -h <服务器地址> -p <端口号> -d <数据库名> [-U 用户名]
psql
1
2

1、数据库操作

# 列出数据库
postgres=# \l
                                  List of databases
   Name    |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   
-----------+----------+----------+-------------+-------------+-----------------------
 postgres  | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | 
 sonarqube | sonar    | UTF8     | en_US.UTF-8 | en_US.UTF-8 | 
 template0 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
 template1 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
(4 rows)

# 切换数据库
postgres-# \c testdb
You are now connected to database "testdb" as user "postgres".
testdb-#
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

2、数据表操作

# 列出当前数据库所有表
\d

# 查看表格信息
\d tablename
1
2
3
4
5

其他操作:

-- 查看pgsql版本
SELECT version();
 
-- 查看用户名和密码
SELECT * FROM pg_authid;
 
-- 获取服务器上所有数据库信息
SELECT * FROM pg_database ORDER BY datname;
 
-- 得到当前db中所有表的信息(pg_tables是系统视图)
select * from pg_tables ORDER BY schemaname;

-- 断开连接到sonar数据库上的所有链接
SELECT pg_terminate_backend(pg_stat_activity.pid)
FROM pg_stat_activity
WHERE datname='sonar' AND pid<>pg_backend_pid();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16