# apt-get install postgresql phppgadmin
# su - postgres
建立管理者帳號
# createuser --password -a -d admin
密碼:
or
# sudo -u postgres psql template1
歡迎來到 psql 8.3.9,這是 PostgreSQL 互動式文字終端機。
鍵入: \copyright 顯示發行條款
\h 顯示 SQL 命令的說明
\? 顯示 pgsql 命令的說明
\g 或者以分號(;)結尾以執行查詢
\q 退出
建立新帳號/密碼
template1=# create user admin with password 'PASSWORD' createdb createuser;
變更密碼
template1=# alter user postgres with password 'PASSWORD';
ALTER ROLE
template1=# \q
============================================================================
讓 postgres 可以登入 phppgadmin
修改 /etc/phppgadmin/config.inc.php
將
$conf['extra_login_security'] = true;
變更為
$conf['extra_login_security'] = false;
留言列表