postgres 用户更改密码 配置 卸载

卸载:

dpkg --list | grep postgresql         列出与postgresql 相关的文件

dpkg --purge  <filename>           卸载同时删除配置文件


安装:

sudo apt-get install -y postgresql


设置密码:

sudo -u postgres psql 

postgres=# alter user postgres with password ‘postgres’;

postgres=# \q


更改配置文件:

sudo vim /etc/postgresql/9.3/main/postgresql.conf

listen_addresses = ‘*’ 

password_encryption = on

sudo vim /etc/postgresql/9.3/main/pg_hba.conf 

local   all             all                                     trust

host    all            all             0.0.0.0/0          trust

host    all             all             ::1/128             trust

sudo /etc/init.d/postgresql restart


测试连接:

psql -U <username> -d <dbname> -h 127.0.0.1
postgres=#


安装GUI管理工具:

sudo apt-get install pgadmin3




你可能感兴趣的:(postgres 用户更改密码 配置 卸载)