在脚本中调用psql如何自动输入密码
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
- 设置环境变量PGPASSWORD
#linux
export PGPASSWORD=12345
#windows
set PGPASSWORD=12345
- 使用密码文件.pgpass
在~/目录下创建隐藏文件.pgpass
set PGPASSFILE=/文件路径/.pgpass
文件内容:
hostname:port:database:username:password
192.168.1.10:5432:dbname:username:password
192.168.1.11:5432:dbname:username:password
192.168.1.12:5432:dbname:username:password
- 在服务器端修改更改配置文件
PostgreSQL\9.5\data\pg_hba.conf
将其中对应的md5改为trust,然后重启服务。
# TYPE DATABASE USER ADDRESS METHOD
# IPv4 local connections:
host all all 127.0.0.1/32 md5 <= 改为trust
host all all 172.20.1.0/24 md5
host all all 172.168.199.0/24 md5
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献12条内容
所有评论(0)