phppgadmin
發表於 : 2012-03-16 09:34:47
http://blog.longwin.com.tw/2007/07/debi ... dmin_2007/
phppgadmin 預設是不讓 postgres 登入, 所以最好要先 create 一個 user 再登入使用.
如果想要讓 postgres 登入, 一定要先修改 postgres 的密碼(postgres 的密碼不能為空)
vim /etc/phppgadmin/config.inc.php
修改 $conf['extra_login_security'] = true;
變成
這樣子就可以用 postgres 登入.
phppgadmin 預設是不讓 postgres 登入, 所以最好要先 create 一個 user 再登入使用.
如果想要讓 postgres 登入, 一定要先修改 postgres 的密碼(postgres 的密碼不能為空)
vim /etc/phppgadmin/config.inc.php
修改 $conf['extra_login_security'] = true;
變成
代碼: 選擇全部
$conf['extra_login_security'] = false;
代碼: 選擇全部
$conf['servers'][0]['host'] = '127.0.0.1';