PostgreSQL在Ubuntu上安裝指南

來源:互聯網
上載者:User

標籤:style   blog   http   java   os   資料   for   ar   

安裝環境:

      Ubuntu 14

      PostgreSQL 9.0

1. 安裝PostgreSQL

  輸入如下命令

 sudo apt-get install postgresql

 

系統會提示安裝所需磁碟空間,輸入"y",安裝程式會自動完成。 安裝完畢後,系統會建立一個資料庫超級使用者“postgres”, 密碼為空白。這個使用者既是不可登入的作業系統使用者,也是資料庫使用者。

2. 修改Linux使用者postgres的密碼

  輸入如下命令

 sudo passwd postgres

3. 修改資料庫超級使用者postgres的密碼

1) 切換到Linux下postgres使用者

 sudo su postgres

2) 登入postgres資料庫

psql postgres

這樣你會看到postgres提示資訊如下:

psql (8.4.4)

Type "help" for help.

並出現postgres的命令列提示符號:

postgres=#

3) 輸入如下命令

 ALTER USER postgres with PASSWORD ‘password‘

 鍵入“exit”返回到Linux命令列。

4. 添加自己定義的使用者和資料庫

1) 添加新使用者

 createuser -drSP fedoraAdmin

   按照提示輸入該使用者的密碼。

2) 建立一個屬於自訂使用者fedoraAdmin的資料庫

 createdb -O fedoraAdmin mydb

通過如上設定,可以在Java中通過以下配置來串連PostgresSQL資料庫

user:fedoraAdmin

password: your password

url: jdbc:postgresql://localhost:5432/mydb

5. 安裝pgAdmin3

1) 鍵入如下命令安裝pgAdmin3

 sudo apt-get install pgadmin3

2) 鍵入如下命令運行pgAdmin3 

 pgadmin3

 你就會看到pgAdmin3的主介面如下所示:

添加相應的參數以建立一個到PostgreSql的串連:

6. 設定其它機器上對postgres的訪問

修改/etc/postgresql/8.4/main/pg_hba.conf:

host all all 0.0.0.0/0 md5  #0.0.0.0為位址區段,0為多少二進位位

例如:192.168.0.0/16代表192.168.0.1-192.168.255.254

修改/etc/postgresql/8.4/main/postgresql.conf

listen_address = ‘*‘

重啟資料庫

sudo /etc/init.d/postgresql-8.4 restart

相關文章
阿里云产品大规模降价
  • 最高幅度達59%,平均降幅23%
  • 核心產品降價
  • 多地區降價
undefined. /
透過 Discord 與我們聯繫
  • 安全、匿名的群聊,不受干擾
  • 隨時了解活動、活動、新產品等訊息
  • 支持您的所有問題
undefined. /
免費試用
  • 開啟從ECS到大數據的免費試用之旅
  • 只需三步 輕鬆上雲
  • 免費試用ECS t5 1C1G
undefined. /

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.