PostgreSQL安裝、配置及簡單使用方法,postgresql使用方法

來源:互聯網
上載者:User

PostgreSQL安裝、配置及簡單使用方法,postgresql使用方法

一、PostgreSQL簡介

1、什麼是PostgreSQL

PostgreSQL資料庫是目前功能最強大的開來源資料庫,支援豐富的資料類型(如JSON何JSONB類型,數群組類型)和自訂類型。而且它提供了豐富的介面,可以很容易地擴充它的功能,如可以在GiST架構下實現自己的索引類型等,它還支援使用C語言寫自訂函數、觸發器,也支援使用流行的語言寫自訂函數,比如其中的PL/Perl提供了使用Perl語言寫自訂函數的功能,當然還有PL/Python、PL/Tcl,等等。

2、PostgreSQL資料庫的優勢

PostgreSQL資料庫是目前功能最強大的開來源資料庫,它是最接近工業標準SQL92的查詢語言,並且正在實現新的功能已相容最新的SQL標準:SQL2003.

穩定可靠:PostgreSQL是唯一能做到資料零丟失的開來源資料庫。有報道稱國外的部分銀行也在使用PostgreSQL。

開源省錢:PostgreSQL資料庫是開源的、免費的,而且是BSD協議,在使用和二次開發上基本沒有限制。

支援廣泛:PostgreSQL資料庫支援大量的主流開發語言,包括C、C++、Perl、Python、Java、Tcl,和PHP等。

PostgreSQL社區活躍:PostgreSQL基本上每三個月推出一個補丁版本,這意味著已知的BUG很快會被修複,有應用情境的需求也會及時得到響應。


二、PostgreSQL安裝與配置

#安裝前準備:

1、系統版本

[root@node1 ~]# cat /etc/redhat-releaseCentOS Linux release 7.2.1511 (Core)

2、yum安裝(在官網上找到對應版本的yum源,之後安裝到本地。

[root@node1 ~]# yum -y install pgdg-centos96-9.6-3.noarch.rpm #yum源安裝[root@node1 ~]# yum -y install postgresql-server #安裝postgreesql#安裝產生的檔案[root@node1 ~]# rpm -ql postgresql-server/etc/pam.d/postgresql/usr/bin/initdb/usr/bin/pg_basebackup/usr/bin/pg_controldata/usr/bin/pg_ctl/usr/bin/pg_receivexlog/usr/bin/pg_resetxlog/usr/bin/postgres/usr/bin/postgresql-check-db-dir/usr/bin/postgresql-setup/usr/bin/postmaster/usr/lib/systemd/system/postgresql.service/usr/lib/tmpfiles.d/postgresql.conf/var/lib/pgsql/var/lib/pgsql/.bash_profile/var/lib/pgsql/backups/var/lib/pgsql/data/var/run/postgresql、#啟動postgresql#直接啟動會報錯:[root@node1 ~]# systemctl start postgresql.serviceJob for postgresql.service failed because the control process exited with error code. See "systemctl status postgresql.service" and "journalctl -xe" for details.#上面是提示資料庫還沒有初始化,所以我們先初始化一下postgresql-setup initdbInitializing database ... OK #提示初始化成功#重新啟動Postgresql[root@node1 ~]# systemctl start postgresql.service[root@node1 ~]# netstat -tnlpProto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp  0  0 127.0.0.1:5432  0.0.0.0:*  LISTEN  1512/postgres  tcp6  0  0 ::1:5432    :::*  LISTEN  1512/postgres #查看運行狀態[root@node1 ~]# systemctl status postgresql.service● postgresql.service - PostgreSQL database server Active: active (running) since Sat 2016-11-26 22:49:07 CST; 1min 33s ago#切換到作業系統下的“postgres”使用者,登入資料庫[root@node1 ~]# su - postgres-bash-4.2$ psqlpsql (9.2.15)Type "help" for help.postgres=# helpYou are using psql, the command-line interface to PostgreSQL.Type: \copyright for distribution terms  \h for help with SQL commands  \? for help with psql commands  \g or terminate with semicolon to execute query  \q to quit#到此為止,基本安裝已經完成。

3、源碼安裝

#首先到官方網站下載原始碼(https://www.postgresql.org/ftp/source/)

#開始編譯安裝[root@node1 soft]# tar xf postgresql-9.6.1.tar.bz2[root@node1 soft]# cd postgresql-9.6.1# yum -y groupinstall "Development tools" #開發包組# yum -y install perl-ExtUtils-Embed readline-devel zlib-devel python-devel #依賴包# ./configure --prefix=/usr/local/postgresql-9.6.1 --with-perl --with-python --with-blocksize=32 --with-wal-blocksize=64 --with-wal-segsize=64# make && make install#安裝後的配置[root@node1 postgresql-9.6.1]# cat /etc/profile.d/postgresql.shexport PATH=$PATH:/usr/local/pgsql/binexport PGDATA=/data/pgdata[root@node1 postgresql-9.6.1]# source /etc/profile.d/postgresql.sh[root@node1 postgresql-9.6.1]# echo "/usr/local/pgsql/lib" > /etc/ld.so.conf.d/pgsql.conf[root@node1 postgresql-9.6.1]# ldconfig#建立資料庫目錄並初始化資料庫[root@node1 postgresql-9.6.1]# mkdir /data/pgdata/[root@node1 postgresql-9.6.1]# chown -R postgres.postgres /data/pgdata/[root@node1 postgresql-9.6.1]# su - postgres-bash-4.2$ initdbThe database cluster will be initialized with locale "en_US.UTF-8".The default database encoding has accordingly been set to "UTF8".The default text search configuration will be set to "english".fixing permissions on existing directory /data/pgdata ... okcreating subdirectories ... okselecting default max_connections ... 100selecting default shared_buffers ... 128MBselecting dynamic shared memory implementation ... posixcreating configuration files ... okrunning bootstrap script ... okperforming post-bootstrap initialization ... oksyncing data to disk ... okSuccess. You can now start the database server using: pg_ctl -D /data/pgdata -l logfile start#安裝contrib目錄下的工具# cd postgresql-9.6.1/contrib/# make# make install#啟動和停止資料庫# pg_ctl start -D $PGDATA #PGDATA是pgsql的資料目錄# pg_ctl stop -D $PGDATA [-m SHUTDOWN-MODE]其中-m是制定資料庫的停止方法,有以下三種smart:等所有的串連中止後,關閉資料庫。如果用戶端不中止,則無法關閉資料庫。fast:快速關閉資料庫,斷開用戶端的串連,讓已有的交易回復,然後正常關閉資料庫。immediate:立即關閉資料庫,相當於資料庫進程立即停止,直接退出,下次啟動資料庫需要進行修複。

4、PostgreSQL的簡單配置

在資料目錄下編輯postgresql.conf檔案,找到如下內容:#listen_addresses = 'localhost'   # what IP address(es) to listen on;#port = 5432       # (change requires restart)listen_addresses表示要監聽的地址,要讓網路上的主機登入這台資料庫,需要把這個地址改成"*",或者0.0.0.0。port表示監聽的連接埠,可以不更改,修改這兩個參數後,需要重啟才會生效。#與資料庫Log相關的參數logging_collector = on #日誌的收集,on表示開啟log_directory = 'pg_log' #定義日誌的收集目錄日誌的切換和是否選擇覆蓋則可以使用如下幾種方案方案一:每天生產一個新的記錄檔log_filename = ‘postgresql-%Y-%m-%d_%H%M%S.log'log_truncate_on_rotation = offlog_rotation_age = 1dlog_rotation_size = 0方案二:每當日誌寫滿一定的大小(如10MB空間),則切換一個日誌log_filename = ‘postgresql-%Y-%m-%d_%H%M%S.log'log_truncate_on_rotation = offlog_rotation_age = 0log_rotation_size = 10M方案三:只保留7天的日誌,進行迴圈覆蓋 log_filename = ‘postgresql-%a.log'log_truncate_on_rotation = offlog_rotation_age = 1dlog_rotation_size = 0

5、記憶體參數的設定

shared_buffers:共用記憶體的大小,主要用於共用資料區塊。

#shared_buffers預設值為32MB,如果有足夠的記憶體,可以把這個參數改得大一些,這樣資料庫就可以緩衝更多的資料庫,當讀取資料時,就可以從共用記憶體中讀,而不需要再從檔案上去讀取。

work_mem:單個SQL執行時,排序、hash join所使用的記憶體,SQL運行完後,記憶體就釋放了,把這個值設大一些,會讓排序操作快一些。


三、SQL文法入門

1、SQL語句文法簡介

(1)、語句的分類(SQL命令一般分為DDL、DML、DQL幾類)

DDL:Data Definition Language的縮寫,即資料定義語言 (Data Definition Language),主要用於建立、刪除,以及修改表、索引等資料庫物件語言。

DML:Data Manipulation Language的簡稱,即資料操縱語言,主要用於插入、更新、刪除資料,所以也分為INSERT、UPDATE、DELETE三種語句。

DQL:資料庫查詢語句,基本及時SELECT查詢命令,用於資料查詢。

相關文章

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.