2009年7月19日 星期日

install postgresql in ubuntu

這次實驗室專題需要使用資料庫,本來決定使用MySql,不幸的是根據MySql授權如果搭配硬體出售必須付費,所以只好選擇了較不熟悉的Postgresql來使用,在這裡順便安裝postgresql的圖形管理工具pgadmin3。


1.安裝postgresql與管理工具
sudo apt-get install postgresql
sudo apt-get install pgadmin3


2.啟動sql
sudo /etc/init.d/postgresql-8.3 restart


3.設定postgres本機密碼
sudo passwd postgres


4.設定postgres連線密碼
注意!!這裡必須先將使用者身份轉為postgres
su postgres
psql postgres
postgres=# alter user postgres with password '密碼';


5.重新啟動sql
sudo /etc/init.d/postgresql-8.3 restart


6.新增/刪除使用者
新增使用者:

su postgres
createuser 使用者名稱 -P (-P)加上密碼
Shall the new role be a superuser? (y/n) n
Shall the new role be allowed to create databases? (y/n) n
Shall the new role be allowed to create more new roles? (y/n) n

刪除使用者:
dropuser 使用者名稱


7.新增/刪除資料庫

createdb 資料庫名稱
dropdb 資料庫名稱


步驟到此資料庫設定完成
接下來就可以使用pgadmin3登入資料庫。

沒有留言:

張貼留言