postgresql – 如何在没有密码提示的情况下使用psql?

前端之家收集整理的这篇文章主要介绍了postgresql – 如何在没有密码提示的情况下使用psql?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在数据库中为REINDEX索引编写了一个脚本.这是其中之一:
echo -e "\nreindex for unq_vbvdata_vehicle started at: `date "+%F %T"`" >> ${LOG_FILE}
psql -U ${USERNAME} -h ${HOSTNAME} -d ${DBNAME} -c "REINDEX INDEX scm_main.unq_vbvdata_vehicle;"
if [[ ${?} -eq 0 ]]; then
    echo "reindex for unq_vbvdata_vehicle finished at: `date "+%F %T"`" >> ${LOG_FILE}
else
    echo "reindex for unq_vbvdata_vehicle Failed" >> ${LOG_FILE}
    exit 1
fi

问题是我无法在独立模式下运行此脚本. psql每次运行时都会提示输入密码.还有两个限制:

>我无法在没有密码的数据库上创建用户.
>因为REINDEX锁定表,我应该使用sleep< num>每个REINDEX之间.

自动解决方案吗?

密码提示有四种选择:

>设置PGPASSWORD环境变量.有关详细信息,请参见手册:http://www.postgresql.org/docs/current/static/libpq-envars.html
>使用.pgpass文件存储密码.有关详细信息,请参见手册:http://www.postgresql.org/docs/current/static/libpq-pgpass.html
>对该特定用户使用“信任身份验证”:http://www.postgresql.org/docs/current/static/auth-methods.html#AUTH-TRUST
>使用包含所有内容的连接URI:http://www.postgresql.org/docs/current/static/libpq-connect.html#AEN42532

原文链接:https://www.f2er.com/postgresql/192435.html

猜你在找的Postgre SQL相关文章