Postgresql安装配置
2019-07-12 本文已影响0人
霡霂976447044
防止遗忘
- 简单安装
apt install postgresql postgresql-client
- 配置Linux用户postgres密码
sudo passwd postgres
- 配置Postgresql用户密码
su postgres
psql
ALTER USER postgres WITH PASSWORD 'postgres';
防止遗忘
apt install postgresql postgresql-client
sudo passwd postgres
su postgres
psql
ALTER USER postgres WITH PASSWORD 'postgres';