Install
Install
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-postgresql-on-ubuntu-18-04
Config File Nerede?
psql -U postgres -c 'SHOW config_file'
Şifre Değiştirme
ALTER USER postgres WITH PASSWORD 'park.123';
Şifreli Giriş
pg_hba.conf dosyası düzenlenmelidir.
# Database administrative login by Unix domain socket
local all postgres password
Restart
sudo service postgresql restart
Last updated