PG數據庫查看當前連接數:
select count(1) from pg_stat_activity;
PG數據庫查看最大連接數:
show max_connections;
最大連接數也可以在pg配置文件中配置:
在postgresql.conf中設置:
max_connections = 500
PG數據庫查看當前連接數:
select count(1) from pg_stat_activity;
PG數據庫查看最大連接數:
show max_connections;
最大連接數也可以在pg配置文件中配置:
在postgresql.conf中設置:
max_connections = 500
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。