Ubuntu安裝、使用postgresql資料庫

來源:互聯網
上載者:User

標籤:postgresql   postgres   


Ubuntu安裝、使用postgresql資料庫


$ sudo apt-get install postgresql


$ sudo passwd postgres   (postgres帳號的家目錄為:/var/lib/postgresql)


安裝postgres圖形化用戶端


$ sudo apt-get install pgadmin3    (調用直接在命令列裡輸入pgadmin3即可)



postgres的主要設定檔


/etc/postgresql/9.1/main/下的pg_hba.conf(串連資料庫的身分識別驗證方式)和postgresql.conf(資料庫的


設定檔)  (建議修改前都備份下)


postgresql的bin命令路徑:


/usr/lib/postgresql/8.4/bin  


預設不寫絕對路徑無法調用,可做下軟連結:


# ln -s /usr/lib/postgresql/8.4/bin/* /usr/bin/   (有些本來就有,無所謂的)



postgres的資料庫存放路徑:


/var/lib/postgresql/9.1/main/base     (註:這裡顯示的是資料庫的OID,非資料庫名)


如要查看OID對應的資料庫名,在base目錄下執行oid2name即可



啟動、關閉、重啟postgresql


$ sudo service postgresql start\stop\restart




在postgres帳號命令列下操作步驟如下:


建立帳號


$ createuser -A -D -P -R user1


密碼


註:


-A 不允許建立其他使用者

-D 不允許建立資料庫

-P 建立密碼

-R 不允許建立角色



建立資料庫ming


$ createdb ming


進入資料庫ming


$ psql ming


進入後介面如下


ming=#




在資料庫下操作步驟如下:



$ psql -U postgres  (在postgres帳號下可直接psql)



建立帳號



postgres=# create user "ming" with password ‘123456‘ nocreatedb;


建立資料庫並指定owner


postgres=# create database "mingdb" with owner="ming";




\l:列出已有資料庫的Owner,Encoding等資訊


\c  資料庫名:切換資料庫


\d:查看當前資料庫中已有的表


\d 表名:查看錶結構


\du:列出所有使用者


\q:退出



本文出自 “linux” 部落格,謝絕轉載!

Ubuntu安裝、使用postgresql資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.