標籤:使用者認證 管理 資料庫 log 關係 一個資料庫 from 大型資料庫 程式
PostgreSQL 是一款強大的高效能的對象關係型資料庫管理系統(ORDBMS),採用與BSD一樣的授權方式。PostgreSQL是非常適合大型資料庫,有許多先進的功能。PostgreSQL支援許多作業系統,包括Linux,FreeBSD,Solaris和Microsoft Windows。
phpPgAdmin 是管理PostgreSQL資料庫基於PHP的Web應用程式。使用phpPgAdmin很容易建立一個資料庫,建立一個角色,並在Postgres裡建立表。下面說說在Ubuntu 下安裝 PostgreSQL 和 phpPgAdmin的過程。
第一步:安裝 PostgreSQL, phpPgAdmin 和 Apache2
sudo apt-get -y install postgresql postgresql-contrib phppgadmin
第二步:配置 PostgreSQL 使用者
PostgreSQL使用的使用者認證和授權類似UNIX許可權角色。預設情況下,PostgreSQL建立了一個名為“Postgres”基本驗證新使用者。要使用PostgreSQL,您需要登入到“Postgres”賬戶,你可以通過鍵入:
sudo -u postgres psql
然後更改Postgres角色的密碼:\p
第三步:配置Apache2
cd /etc/apache2/conf-available/
phppgadmin.conf
注釋掉#Require local,添加Allow From all,這樣才可以從你的瀏覽器訪問。
第四步:配置 phpPgAdmin
編輯檔案 /etc/phppgadmin/config.inc.php :
cd /etc/phppgadmin/
config.inc.php
找到 $conf[‘extra_login_security’] = true; 修改為false。
你就可以使用 postgres phpPgAdmin。
第五步:重啟 PostgreSQL 和 Apache2
systemctl restart postgresql
systemctl restart apache2
第六步:測試登入
瀏覽器輸入:http://localhost/phppgadmin/
ubuntu下安裝PostgreSQL 和 phpPgAdmin