highgo=# create database test connection limit 2;
CREATE DATABASE
highgo=# \c test
You are now connected to database "test" as user "highgo".
test=#
test=# select current_database();
current_database
------------------
test
(1 row)
使用超级用户highgo开启四个session连接数据库,分别连接test数据库后,
test=# select pid from pg_stat_activity limit 1;
pid
------
1979
(1 row)
查看有四个连接:
test=# select pid from pg_stat_activity;
pid
------
2189
1979
2042
2104
(4 rows)
使用超级用户highgo用户连接数据库可以同时连接2个以上的session。
*******************************************************************************************************
使用普通用户test连接
highgo=# \c test test
You are now connected to database "test" as user "test".
test=> select pid from pg_stat_activity ;
pid
------
2380
2378
(2 rows)
当连接到第三个session时,则会报错:
test=# \c test test
致命错误: 到数据库 "test"的连接太多了
Previous connection kept
从而验证connection limit仅对非superuser起作用,对superuser不起作用。
将test用户设置为superuser后,可以使用test同时打开多个会话
test=> \c highgo highgo
You are now connected to database "highgo" as user "highgo".
highgo=# alter user test superuser;
ALTER ROLE
highgo=# \c test test
You are now connected to database "test" as user "test".
test=#