postgresql整天都說自己是最高端的開源資料庫,那有時候我們也會做一些oracle到postgresql的遷移。於是就配一下。
文/圖 王文文(鮮橙加冰)
系統是ubuntu9.10
首先嘮叨一下,官方有打包好的enterpisedb,支援圖形介面一鍵安裝和--mode text文字安裝,很方便。
1.先關閉selinux,這個東東太安全了,高手就調一下規則,低手就學我把。disabled掉它(ubuntu使用者略過這步)。
2.sudo apt-get install postgresql
3.sudo /etc/init.d/postgresql-8.4 restart
4.su - postgres
createuser -adpe test
createdb -o test test
(這句的意思是create database)
createlang plpgsql test
(createlang 是乙個用於向 postgresql 資料庫增加新的程式語言的工具。 它可以處理所有 postgresql 版本預設就提供的語言,但是不能處理其它方面提供的語言)
psql -h 127.0.0.1 -u test test
附錄:postgresql預設的超級管理員密碼是postgres
連線方法:psql -u postgres(注意,是大寫的-u)
預設密碼為空
修改密碼的方法是,用psql登入管理:psql -u postgres
然後用這樣的命令來修改密碼:alter user postgres with password 'new password'
如果需要遠端連線,注意修改配置檔案:
to enable tcp/ip connections, edit the file /etc/postgresql/8.3/main/postgresql.conf
locate the line #listen_addresses = 'localhost' and change it to:
listen_addresses = 'localhost'
ubuntu9 10 硬碟安裝
網上一般有乙個步驟是 修改 boot.ini,在最末加上一句 c grldr ubuntu 其實我開啟的時候發現其實wingrub已經為我們做好這一步了 4 重啟計算機,選擇ubuntu。之後就進入了livecd介面,開啟終端,sudo umount l isodevice,然後關閉終端,雙擊桌面上...
ubuntu 9 10 安裝筆記
打造自己的ubuntu 9.10 第一次使用ubuntu已經是一兩年前的事了,但當時因為機子效能差,所以跑起來不順暢。今天10月30,我終於等到了9.10這個最新的版本,馬上來體驗一下吧。好像沒看到lvm,所以我直接都將檔案系統設定為ext4.我的配置為intel e5300,g41主機板 整合顯示...
硬碟安裝Ubuntu9 10
軟體md5 0074c63785c0787887f5edbca77db68a 最後在c盤下建個menu.lst,內容為 title install ubuntu root hd0,0 kernel hd0,0 vmlinuz boot casper iso scan filename ylmf li...