postgres(greenplumn)连接数查看与设置

    xiaoxiao2022-07-02  109

        PG中有一张表记录着当前有多少连接

        表名:pg_stat_activity

    1、查询当前连接数:

    select count(1) from pg_stat_activity;

    2、查询最大连接数

    show max_connections;

    3、最大连接数也可以在pg配置文件中配置:

    在postgresql.conf中设置:

    max_connections = 500

     

    最新回复(0)