sql执行系统shell的扩展pg_remote_exec
原文地址
https://github.com/cybertec-postgresql/pg_remote_exec
原文作者
13.1 概述
该扩展提供了 2 个函数(pg_remote_exec、pg_remote_exec_fetch),可以在用于启动 PostgreSQL 服务器的用户下,在服务器 shell 上“按原样”执行用户提供的输入文本。
**警告!**调用函数的用户不必是“超级用户”,因此很容易造成极端伤害。仅适用于特殊用例。
13.2 提供的功能
- pg_remote_exec(text) - 执行命令并返回 shell 退出代码
- pg_remote_exec_fetch(text,boolean) - 执行命令并将输出作为文本返回(如果有)。布尔“ignore_errors”参数指定如果退出代码为非零,则是否应返回命令的任何输出。
13.3 安装
# pg_config needs to be on the path! # if non-default pg_config location is needed one can specify it similar to USE_PGXS i.e. PG_CONFIG=/path/... git clone https://github.com/cybertec-postgresql/pg_remote_exec.git cd pg_remote_exec USE_PGXS=1 make sudo USE_PGXS=1 make install
复制
13.4 用法
CREATE EXTENSION pg_remote_exec; – needs to be done by a Superuser previously
postgres@postgres=# select pg_remote_exec(‘date’);
pg_remote_exec
────────────────
0
(1 row)
postgres@postgres=# select pg_remote_exec_fetch(‘date’, ‘t’);
pg_remote_exec_fetch
───────────────────────────────
Fri Aug 5 17:41:07 EEST 2016
(1 row)
postgres@postgres=# select pg_remote_exec_fetch(‘echo “a” && /bin/false’, ‘t’);
pg_remote_exec_fetch
──────────────────────
a
(1 row)
postgres@postgres=# select pg_remote_exec_fetch(‘echo “a” && /bin/false’, ‘f’);
ERROR: Failed to run command