我在数据库中为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之间.
密码提示有四种选择:
原文链接:https://www.f2er.com/postgresql/192435.html>设置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