如何在 Mac Os Big Sur 上安装 pgBench?

如何在 Mac Os Big Sur 上安装 pgBench?

如何在 mac os Big Sur 上安装 pgBench。我已经安装了 postgres 12.5,但 stack builder 没有安装 pgbench 的选项。安装后如何将 pgbench 连接到远程 postgres 服务器。

答案1

如果您使用 brew 安装 postgresql,则说明您已安装 pgbench。要获取 pgbench 命令帮助,请运行“pgbench --help”。

要将其连接到远程服务器,您需要分别向 pgbench 传递目标数据库的主机、端口和用户名选项(-h、-p、-U)。

例子: pgbench -h labserver -p 5432 -U postgres -i postgres

我的示例中的 -i 用于 pgbench 初始化。

相关内容