text 等待Postgres ......

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 等待Postgres ......相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env bash

set -e

host="${1:-postgres}"

trap 'kill -INT -$pid' INT

timeout 30 bash <<EOF &
  function wait_for_postgres() {
    until psql -h "$host" -U "postgres" -c '\l'; do
      >&2 echo "Postgres is unavailable - sleeping"
      sleep 1
    done
  }
  wait_for_postgres
EOF

pid=$!

wait $pid

以上是关于text 等待Postgres ......的主要内容,如果未能解决你的问题,请参考以下文章

Datagrip:创建postgres索引而不等待执行

Postgres中的锁

text Postgres - 阻止更新

text 创建新的db postgres

text Postgres的例子

text postgres crear触发器