PG - .pgpass
Summary
- 在数据库的日常维护中,在每次链接的时候,我们都需要输入密码,使用该文件可以自动输入密码。
Demo
# 编辑配置文件
vim ~/.pgpass
172.26.221.137:5432:database:username:password
# 链接服务
psql -h 172.26.221.137 -p 5432 database username
本文来自博客园,作者:duchaoqun,转载请注明原文链接:https://www.cnblogs.com/duchaoqun/p/13253553.html