使用dblink函数 跨库查询
sudo yum install postgres*contrib ##安装扩展
CREATE EXTENSION dblink; ##创建dblink函数
设置开机自启动
创建脚本
mkdir /home/postgresql/bin
cd /home/postgresql/bin
vim startup.sh
输入一下内容:
#! /bin/bash
su postgres<<!
cd /home/postgresql
/usr/pgsql-11/bin/pg_ctl -D /home/postgresql/data -l logfile start
exit $?
按 esc ,然后按shift和:, 然后执行set ff=unix,按回车键,然后保存退出就可以了
添加脚本路径
chmod -R 755 startup.sh
vim /etc/rc.local
在文件内容最后一行添加:
/home/postgresql/bin/startup.sh
other
//查看过期连接
select * from pg_stat_activity where state = 'idle'
//删除连接,括号里传pid
select pg_terminate_backend(25800);
//查看最大连接数
show max_connections;
//查看最大连接数
select setting,boot_val,reset_val,sourcefile,*from pg_settings where name ='max_connections';
//修改最大连接数,需要superuser权限
alter system set max_connections= 1000;