修改 postgres 的密碼 (三)
參考自:如何將 PostgreSQL 開放透過網路連線操作 ?
第十九章 資料庫系統
1- login 入 PostgreSQL
[root@c52 ~]# su -l postgres
-bash-3.2$ psql template1;
Welcome to psql 8.1.11, the PostgreSQL interactive terminal.
Type: \copyright for distribution terms
\h for help with SQL commands
\? for help with psql commands
\g or terminate with semicolon to execute query
\q to quit
2- 以 ALTER USER 指令改密碼,然後離開。
template1=# ALTER USER postgres WITH PASSWORD '789789';
ALTER ROLE
template1=# quit
3- 測試
[root@c52 ~]# su postgres
bash-3.2$ psql -l
could not change directory to "/root"
List of databases
Name | Owner | Encoding
-----------+----------+----------
postgres | postgres | UTF8
template0 | postgres | UTF8
template1 | postgres | UTF8
(3 rows)
bash-3.2$
沒有留言:
張貼留言