1. PostgreSQL-安装和基本配置(学习笔记)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1. PostgreSQL-安装和基本配置(学习笔记)相关的知识,希望对你有一定的参考价值。
1 PostgreSQL简介
1.1 概述
??PostgreSQL数据库是目前功能最强大的开源数据库,支持丰富的数据类型(如JSON和JSONB类型,数组类型)和自定义类型。而且它提供了丰富的接口,可以很容易地扩展它的功能,如可以在GiST框架下实现自己的索引类型等,它还支持使用C语言写自定义函数、触发器,也支持使用流行的语言写自定义函数、比如其中的PL/Perl提供了使用Perl语言写自定义函数的功能,当然还有PL/Python,PL/Tcl,等等。
1.2 PostgreSQL优势
PostgreSQL数据库是目前功能最强大的开源数据库,它是最接近工业标准SQL92的查询语言,并且正在实现新的功能以兼容最新的SQL标准:SQL2003。
稳定可靠:PostgreSQL是唯一能够做到数据零丢失的开源数据库。有报道称国外部分银行也在使用PostgreSQL数据库。
开源省钱:PostgreSQL数据库是开源的、免费的,而且是BSD协议,在使用和二次开发上基本没有限制。
支持广泛:PostgreSQL数据库支持大量的主流开发语言,包括C、C++、Perl、Python、Java、Tcl,以及php等。
PostgreSQL社区活跃:PostgreSQL基本上每三个月推出一个补丁版本,这意味着已知的BUG很快会被修复,有应用场景的需求也会及时得到响应。
2 PostgreSQL安装和配置
2.1 yum源中包含的PostgreSQL包
[[email protected] ~]# yum list | grep postgresql Repodata is over 2 weeks old. Install yum-cron? Or run: yum makecache fast freeradius-postgresql.x86_64 3.0.4-6.el7 local libreoffice-postgresql.x86_64 1:5.0.6.2-3.el7 local pcp-pmda-postgresql.x86_64 3.11.3-4.el7 local postgresql.i686 9.2.18-1.el7 local postgresql.x86_64 9.2.18-1.el7 local postgresql-contrib.x86_64 9.2.18-1.el7 local postgresql-devel.i686 9.2.18-1.el7 local postgresql-devel.x86_64 9.2.18-1.el7 local postgresql-docs.x86_64 9.2.18-1.el7 local postgresql-jdbc.noarch 9.2.1002-5.el7 local postgresql-jdbc-javadoc.noarch 9.2.1002-5.el7 local postgresql-libs.i686 9.2.18-1.el7 local postgresql-libs.x86_64 9.2.18-1.el7 local postgresql-odbc.x86_64 09.03.0100-2.el7 local postgresql-plperl.x86_64 9.2.18-1.el7 local postgresql-plpython.x86_64 9.2.18-1.el7 local postgresql-pltcl.x86_64 9.2.18-1.el7 local postgresql-server.x86_64 9.2.18-1.el7 local postgresql-test.x86_64 9.2.18-1.el7 local postgresql-upgrade.x86_64 9.2.18-1.el7 local qt-postgresql.i686 1:4.8.5-13.el7 local qt-postgresql.x86_64 1:4.8.5-13.el7 local qt5-qtbase-postgresql.i686 5.6.1-10.el7 local qt5-qtbase-postgresql.x86_64 5.6.1-10.el7 local
2.2 rpm包安装PostgreSQL
[[email protected] ~]# yum install -y postgresql-server postgresql postgresql-libs server端:postgresql-server client端:postgresql 依赖包: postgresql-libs
1. 安装完成后不能直接启动数据库,需要先手动初始化数据库:
[[email protected] ~]# service postgresql initdb Hint: the preferred way to do this is now "postgresql-setup initdb" Initializing database ... OK
2. 再启动数据库:
[[email protected] ~]# systemctl start postgresql [[email protected] ~]# systemctl status postgresql ● postgresql.service - PostgreSQL database server Loaded: loaded (/usr/lib/systemd/system/postgresql.service; disabled; vendor preset: disabled) Active: active (running) since 一 2018-02-19 22:02:57 CST; 3min 37s ago Process: 1286 ExecStart=/usr/bin/pg_ctl start -D ${PGDATA} -s -o -p ${PGPORT} -w -t 300 (code=exited, status=0/SUCCESS) Process: 1281 ExecStartPre=/usr/bin/postgresql-check-db-dir ${PGDATA} (code=exited, status=0/SUCCESS) Main PID: 1290 (postgres) CGroup: /system.slice/postgresql.service ├─1290 /usr/bin/postgres -D /var/lib/pgsql/data -p 5432 ├─1291 postgres: logger process ├─1293 postgres: checkpointer process ├─1294 postgres: writer process ├─1295 postgres: wal writer process ├─1296 postgres: autovacuum launcher process ├─1297 postgres: stats collector process └─1391 postgres: postgres postgres [local] idle 2月 19 22:02:56 localhost.localdomain systemd[1]: Starting PostgreSQL database server... 2月 19 22:02:57 localhost.localdomain systemd[1]: Started PostgreSQL database server.
3. 切换到操作系统下的“postgres”用户,登陆数据库:
[[email protected] ~]# su - postgres -bash-4.2$ psql psql (9.2.18) 输入 "help" 来获取帮助信息. postgres=# \l 资料库列表 名称 | 拥有者 | 字元编码 | 校对规则 | Ctype | 存取权限 -----------+----------+----------+-------------+-------------+----------------------- postgres | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | template0 | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres template1 | postgres | UTF8 | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres (3 行记录) postgres=#
4. rpm包安装的PostgreSQL的数据目录,默认在/var/lib/pgsql/data
-bash-4.2$ ls -l /var/lib/pgsql/data/ 总用量 48 drwx------ 5 postgres postgres 41 2月 19 22:01 base drwx------ 2 postgres postgres 4096 2月 19 22:02 global drwx------ 2 postgres postgres 18 2月 19 22:01 pg_clog -rw------- 1 postgres postgres 4232 2月 19 22:01 pg_hba.conf -rw------- 1 postgres postgres 1636 2月 19 22:01 pg_ident.conf drwx------ 2 postgres postgres 32 2月 19 22:02 pg_log drwx------ 4 postgres postgres 36 2月 19 22:01 pg_multixact drwx------ 2 postgres postgres 18 2月 19 22:02 pg_notify drwx------ 2 postgres postgres 6 2月 19 22:01 pg_serial drwx------ 2 postgres postgres 6 2月 19 22:01 pg_snapshots drwx------ 2 postgres postgres 25 2月 19 22:08 pg_stat_tmp drwx------ 2 postgres postgres 18 2月 19 22:01 pg_subtrans drwx------ 2 postgres postgres 6 2月 19 22:01 pg_tblspc drwx------ 2 postgres postgres 6 2月 19 22:01 pg_twophase -rw------- 1 postgres postgres 4 2月 19 22:01 PG_VERSION drwx------ 3 postgres postgres 60 2月 19 22:01 pg_xlog -rw------- 1 postgres postgres 19816 2月 19 22:01 postgresql.conf -rw------- 1 postgres postgres 57 2月 19 22:02 postmaster.opts -rw------- 1 postgres postgres 91 2月 19 22:02 postmaster.pid
rpm包的postgresql10安装、初始化数据库以及启动方法(centos-7):
yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm yum install postgresql10 yum install postgresql10-server /usr/pgsql-10/bin/postgresql-10-setup initdb systemctl enable postgresql-10 systemctl start postgresql-10
2.3 源码包安装PostgreSQL
下载源代码
[[email protected] ~]# wget https://ftp.postgresql.org/pub/source/v10.2/postgresql-10.2.tar.gz
安装依赖包
[[email protected] ~]# yum install -y zlib-devel readline-devel gcc
编译安装PostgreSQL
[[email protected] ~]# tar -zxvf postgresql-10.2.tar.gz [[email protected] ~]# cd postgresql-10.2 [[email protected] postgresql-10.2]# ./configure --prefix=/usr/local/pgsql10.2 --with-python --with-perl [[email protected] postgresql-10.2]# make && make install [[email protected] postgresql-10.2]# cd /usr/local/ [[email protected] local]# ln -s pgsql10.2 pgsql
备注:
??在PostgreSQL8.X中,编译命令里需要有“--enable-thread-safety”选项,而在PostgreSQL9.X以后的版本中不需要这个选项。
??因为在日常使用中,一般要求客户端是线程安全的,PostgreSQL9.X以后的版本中考虑到这个问题,默认线程是安全的了。
??--with-perl:加上这个选项,才能使用perl语言的PL/Perl过程语言写自定义函数,一般都需要。要使用这个选项需要先安装perl-ExtUtils-Embed和perl-devel。
??--with-python:加上这个选项,才能使用perl语言的PL/Python过程语言写自定义函数,一般都需要。要使用这个选项需要先安装python-devel。
??按照官方文档要求,使用make命令时,make的版本要在gmake3.8以上,目前大多数Linux发行版都满足要求。(检查方法:make --version)
??不指定--prefix选项,默认路径将是/usr/local
异常处理:
编译时增加 --with-python configure: error: header file <Python.h> is required for Python 解决方法: yum install python-devel
编译时增加 --with-perl configure: error: could not determine flags for linking embedded Perl. This probably means that ExtUtils::Embed or ExtUtils::MakeMaker is notinstalled. 解决方法: yum install perl-ExtUtils-Embed
4. 配置PostgreSQL环境变量
[[email protected] local]# vim /etc/profile # PostgreSQL可执行文件路径 export PATH=/usr/local/pgsql/bin:$PATH # PostgreSQL共享库路径 export LD_LIBRARY_PATH=/usr/local/pgsql/lib [[email protected] local]# source /etc/profile
5. 创建数据库簇
[[email protected] local]# useradd postgres [[email protected] local]# mkdir -pv /mydata/pgdata mkdir: 已创建目录 "/mydata" mkdir: 已创建目录 "/mydata/pgdata" [[email protected] local]# chown -R postgres.postgres /mydata/pgdata/ [[email protected] local]# su - postgres [[email protected] ~]$ /usr/local/pgsql/bin/initdb -D /mydata/pgdata/
6. 启动PostgreSQL
[[email protected] pgsql]$ pg_ctl start -D /mydata/pgdata/ waiting for server to start....2018-02-20 00:52:03.616 CST [38915] LOG: listening on IPv6 address "::1", port 5432 2018-02-20 00:52:03.616 CST [38915] LOG: listening on IPv4 address "127.0.0.1", port 5432 2018-02-20 00:52:03.619 CST [38915] LOG: listening on Unix socket "/tmp/.s.PGSQL.5432" 2018-02-20 00:52:03.689 CST [38916] LOG: database system was shut down at 2018-02-20 00:44:56 CST 2018-02-20 00:52:03.692 CST [38915] LOG: database system is ready to accept connections doneserver started
7. 停止PostgreSQL
[[email protected] pgsql]$ pg_ctl stop -D /mydata/pgdata/备注: 可以在命令后增加 [-m SHUTDOWN-MODE],用来控制数据库的停止方法;SHUTDOWN-MODE有以下三种: smart:等所有的连接终止后,关闭数据库。如果客户端连接不终止,则无法关闭数据库。 fast (PostgreSQL10.X默认):快速关闭数据库,断开客户端的连接,让已有的事物回滚,然后正常关闭数据库。 相当于Oracle数据库关闭时的immediate(adj. 立即的)模式。 immediate:不完整的关闭数据库,相当于kill数据库进程,下次启动数据库需要进行恢复。相当于Oracle数据库关闭时的abort模式。 其中,比较常用的是fast模式。
8. PostgreSQL启动脚本 要使用service命令启动PostgreSQL,需要把PostgreSQL的启动脚本拷贝到 /etc/init.d/ 下,并增加执行权限
[[email protected] start-scripts]# pwd/root/postgresql-10.2/contrib/start-scripts [[email protected] start-scripts]# lsfreebsd linux macos osx [[email protected] start-scripts]# cp linux /etc/init.d/postgresql [[email protected] ~]# cd /etc/init.d [[email protected] init.d]# chmod 755 postgresql
需要修改启动脚本中的几个参数:
[[email protected] init.d]# vim postgresql prefix=/usr/local/pgsql # 确保可以通过这个目录访问到源码安装的PostgereSQL PGDATA="/mydata/pgdata" # 指向第5步创建的数据库簇
备注:
??在centos7中,源码安装的PostgreSQL没有提供systemctl需要的相关脚本,可以继续使用service和chkconfig去管理。
2.4 安装crontrib目录下的工具
crontrib下面有一些工具比较实用,可以装上,方法如下:
[[email protected] postgresql-10.2]# pwd/root/postgresql-10.2 [[email protected] postgresql-10.2]# cd contrib/ [[email protected] contrib]# make && make install 安装后 /usr/local/pgsql/bin 会增加三个命令:oid2name pg_standby vacuumlo
2.5 使用较大的数据块提高I/O性能
??如果希望使用较大的数据块提高I/O性能,只能通过源码编译安装解决解决,在执行 ./configure 命令时指定较大数据块,同时也需要指定较大的WAL日志块和WAL日志文件的大小。
??如果想指定32KB数据块、32KB的WAL日志块、64MB的WAL日志文件,./configure 的命令如下:
./configure --prefix=/usr/local/pgsql10.2 --with-python --with-perl --with-blocksize=32 --with-wal-blocksize=32 --with-wal-segsize=64 备注: --with-blocksize 的范围在1-32KB,默认8KB --with-wal-blocksize 的范围在1-64KB,默认8KB --with-wal-segsize 的范围在1-1024MB,默认16MB 注意: 修改数据块后的PostgreSQL创建的PostgreSQL数据库,不能使用其它块大小的PostgreSQL程序启动。
2.6 PostgreSQL简单配置
2.6.1 修改PostgreSQL监听IP和端口
监听IP和端口需要通过数据目录下的postgresql.conf文件修改:
[[email protected] pgdata]# pwd /mydata/pgdata [[email protected] pgdata]# vim postgresql.conf #listen_addresses = 'localhost' # what IP address(es) to listen on; # comma-separated list of addresses; # defaults to 'localhost'; use '*' for all # (change requires restart) #port = 5432 # (change requires restart)
??监听IP使用localhost时,只能通过127.0.0.1访问数据库;
??如果需要通过其他网络远程访问PostgreSQL,可以使用“,”作为分隔符,把IP地址添加到listen_addresses后,或者使用“*”,让所有IP都可以访问数据库。
2.6.2 配置数据库log
1. 日志开关以及保存目录名
logging_collector = on # 日志的开关,默认是off,不会收集日志 log_directory = 'log' # 日志的保存目录名,默认是在数据目录下的log目录里,使用默认值即可,不需要修改
2. 日志的轮转配置 可以使用以下几种方案:
每天生成一个新的日志
log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' #日志文件名 log_truncate_on_rotation = off # 同名日志覆盖开关 log_rotation_age = 1d # 按时间轮转日志 log_rotation_size = 0 # 按日志大小轮转日志
每当日志写满一定大小(如10MB),进行一次日志轮转
log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' log_truncate_on_rotation = offlog_rotation_age = 0 log_rotation_size = 10M
只保留7天的日志,进行循环覆盖
log_filename = 'postgresql-%a.log' log_truncate_on_rotation = on log_rotation_age = 1dlog_rotation_size = 0
说明:
??%a 代表星期,例如:在星期二时,就会生成postgresql-Tue.log这个日志;
??每当遇到同名的日志时,会对旧的日志文件进行覆盖,而不是在旧的日志文件上进行追加。
2.6.3 内存参数配置
PostgreSQL安装完成后,可以主要修改以下两个主要内存参数:
shared_buffer:共享内存的大小,主要用于共享数据块,默认是128MB;
如果服务器内存有富余,可以把这个参数适当改大一些,这样数据库就可以缓存更多的数据块,当读取数据时,就可以从共享内存中读取,而不需要去文件读取。work_mem:单个SQL执行时,排序、hash join所使用的内存,SQL运行完成后,内存就释放了,默认是4MB;
增加这个参数,可以提高排序操作的速度。
以上是关于1. PostgreSQL-安装和基本配置(学习笔记)的主要内容,如果未能解决你的问题,请参考以下文章
CentOS 7 安装配置使用 PostgreSQL 9.5
IntelliJ IDEA 记学习笔 - Tomcat 启动调试,支持:Maven profiles 区分环境