CentOS 6.9下安裝PostgreSQL

來源:互聯網
上載者:User

標籤:examples   lib   example   com   hub   values   chkconfig   into   str   

作業系統:CentOS6.9_x64

安裝資料庫

使用如下命令:

yum install postgresql-server -y

設定開機啟動:

chkconfig postgresql on

啟動資料庫:

service postgresql start

安裝後,預設產生一個名為postgres的資料庫和一個名為postgres的資料庫使用者。這裡需要注意的是,同時還產生了一個名為postgres的Linux系統使用者。

設定資料庫

初始化資料庫

service postgresql initdb

添加新使用者和新資料庫

adduser psqladminsu - postgresCREATE USER useradmin WITH PASSWORD ‘123456‘;CREATE DATABASE testdb OWNER useradmin;GRANT ALL PRIVILEGES ON DATABASE testdb to useradmin;

修改 postgres 的資料庫密碼

\password postgres

開啟遠端存取:

cd /var/lib/pgsql/data/

postgresql預設情況下,遠端存取不能成功,如果需要允許遠端存取,需要修改兩個設定檔,說明如下:

  1. postgresql.conf

將該檔案中的 listen_addresses 項值設定為“*”,在9.0 Windows版中,該項配置已經是“*”無需修改。

  1. pg_hba.conf

在該設定檔的host all all 127.0.0.1/32 md5行下添加以下配置,或者直接將這一行修改為以下配置

host all all 0.0.0.0/0 md5

如果不希望允許所有IP遠端存取,則可以將上述配置項中的0.0.0.0設定為特定的IP值。

使用資料庫

sql語句範例程式碼:

create table students (    id bigserial primary key,    name varchar(20) NOT NULL);insert into students values (1,‘stu1‘);select * from students ;drop table students ;

python 訪問範例程式碼:

https://github.com/mike-zhang/pyExamples/blob/master/databaseRelate/psqlOpt/psqlTest1.py

好,就這些了,希望對你有協助。

本文github地址:

https://github.com/mike-zhang/mikeBlogEssays/blob/master/2017/20170711_centos6.9下安裝PostgreSQL.rst

歡迎補充

CentOS 6.9下安裝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.