环境:Linux localhost.localdomain 2.6.32-431 GNU/Linux x86_64

Postgresql版本:postgresql.9.5.3

添加开启自启设置:http://my.oschina.net/ensn/blog/690719

1.下载postgresql

因bz2格式包格式比较小,故选择该格式下载。地址:https://www.postgresql.org/ftp/source/v9.5.3/

2.安装:

2.1 解压:

  1.  
  1. tar jxvf postgresql-9.5.3.tar.bz2
  1.  

2.2 安装:

查看INSTALL文件说明安装过程。

  1. [root@localhost postgresql-9.5.3]# less INSTALL
  2. PostgreSQL Installation from Source Code
  3.  
  4. This document describes the installation of PostgreSQL using the source
  5. code distribution. (If you are installing a pre-packaged distribution,
  6. such as an RPM or Debian package, ignore this document and read the
  7. packager's instructions instead.)
  8. __________________________________________________________________
  9.  
  10. Short Version
  11.  
  12. ./configure
  13. make
  14. su
  15. make install
  16. adduser postgres
  17. mkdir /usr/local/pgsql/data
  18. chown postgres /usr/local/pgsql/data
  19. su - postgres
  20. /usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
  21. /usr/local/pgsql/bin/postgres -D /usr/local/pgsql/data >logfile 2>&1 &
  22. /usr/local/pgsql/bin/createdb test
  23. /usr/local/pgsql/bin/psql test
  24. ...

2.2.1 编译

在编译过程中可以指定安装目录与wal日记大小等。编译过程过程中如遇其他问题(可能是依赖库的问题),解决以后重新编译即可。关于编译指定参数与编译过程中可能碰到的问题可参考该博文

  1.  
  1. [root@localhost postgresql-9.5.3]# ./configure --prefix=/usr/local/pgsql9.5.3 --with-pgport=5432 --with-wal-blocksize=64
  2. checking build system type... x86_64-pc-linux-gnu
  3. checking host system type... x86_64-pc-linux-gnu
  4. checking which template to use... linux
  5. checking whether to build with 64-bit integer date/time support... yes
  6. checking whether NLS is wanted... no
  7. checking for default port number... 5432
  8. checking for block size... 8kB
  9. checking for segment size... 1GB
  10. checking for WAL block size... 64kB
  11. checking for WAL segment size... 16MB
  12. checking for gcc... gcc
  13. checking whether the C compiler works... yes
  14. checking for C compiler default output file name... a.out
  15. checking for suffix of executables...
  16. checking whether we are cross compiling... no
  17. checking for suffix of object files... o
  18. checking whether we are using the GNU C compiler... yes
  19. checking whether gcc accepts -g... yes
  20. checking for gcc option to accept ISO C89... none needed
  21. checking whether gcc supports -Wdeclaration-after-statement... yes
  22. checking whether gcc supports -Wendif-labels... yes
  23. checking whether gcc supports -Wmissing-format-attribute... yes
  24. checking whether gcc supports -Wformat-security... yes
  25. checking whether gcc supports -fno-strict-aliasing... yes
  26. checking whether gcc supports -fwrapv... yes
  27. checking whether gcc supports -fexcess-precision=standard... no
  28. checking whether gcc supports -funroll-loops... yes
  29. checking whether gcc supports -ftree-vectorize... yes
  30. checking whether gcc supports -Wunused-command-line-argument... no
  31. checking whether the C compiler still works... yes
  32. checking how to run the C preprocessor... gcc -E
  33. checking allow thread-safe client libraries... yes
  34. checking whether to build with Tcl... no
  35. checking whether to build Perl modules... no
  36. checking whether to build Python modules... no
  37. checking whether to build with GSSAPI support... no
  38. checking whether to build with PAM support... no
  39. checking whether to build with LDAP support... no
  40. checking whether to build with Bonjour support... no
  41. checking whether to build with OpenSSL support... no
  42. checking whether to build with SELinux support... no
  43. checking for grep that handles long lines and -e... /bin/grep
  44. checking for egrep... /bin/grep -E
  45. checking for ld used by GCC... /usr/bin/ld
  46. checking if the linker (/usr/bin/ld) is GNU ld... yes
  47. checking for ranlib... ranlib
  48. checking for strip... strip
  49. checking whether it is possible to strip libraries... yes
  50. checking for ar... ar
  51. checking for a BSD-compatible install... /usr/bin/install -c
  52. checking for tar... /bin/tar
  53. checking whether ln -s works... yes
  54. checking for gawk... gawk
  55. checking for a thread-safe mkdir -p... /bin/mkdir -p
  56. checking for bison... /usr/bin/bison
  57. configure: using bison (GNU Bison) 2.4.1
  58. checking for flex... /usr/bin/flex
  59. configure: using flex 2.5.35
  60. checking for perl... /usr/bin/perl
  61. configure: using perl 5.10.1
  62. checking for main in -lm... yes
  63. checking for library containing setproctitle... no
  64. checking for library containing dlopen... -ldl
  65. checking for library containing socket... none required
  66. checking for library containing shl_load... no
  67. checking for library containing getopt_long... none required
  68. checking for library containing crypt... -lcrypt
  69. checking for library containing shm_open... -lrt
  70. checking for library containing shm_unlink... none required
  71. checking for library containing fdatasync... none required
  72. checking for library containing sched_yield... none required
  73. checking for library containing gethostbyname_r... none required
  74. checking for library containing shmget... none required
  75. checking for library containing readline... -lreadline
  76. checking for inflate in -lz... yes
  77. checking for ANSI C header files... yes
  78. checking for sys/types.h... yes
  79. checking for sys/stat.h... yes
  80. checking for stdlib.h... yes
  81. checking for string.h... yes
  82. checking for memory.h... yes
  83. checking for strings.h... yes
  84. checking for inttypes.h... yes
  85. checking for stdint.h... yes
  86. .......
  87. checking whether gcc supports -Wl,--as-needed... yes
  88. configure: using compiler=gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-4)
  89. configure: using CFLAGS=-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -O2
  90. configure: using CPPFLAGS= -D_GNU_SOURCE
  91. configure: using LDFLAGS= -Wl,--as-needed
  92. configure: creating ./config.status
  93. config.status: creating GNUmakefile
  94. config.status: creating src/Makefile.global
  95. config.status: creating src/include/pg_config.h
  96. config.status: creating src/include/pg_config_ext.h
  97. config.status: creating src/interfaces/ecpg/include/ecpg_config.h
  98. config.status: linking src/backend/port/tas/dummy.s to src/backend/port/tas.s
  99. config.status: linking src/backend/port/dynloader/linux.c to src/backend/port/dynloader.c
  100. config.status: linking src/backend/port/sysv_sema.c to src/backend/port/pg_sema.c
  101. config.status: linking src/backend/port/sysv_shmem.c to src/backend/port/pg_shmem.c
  102. config.status: linking src/backend/port/unix_latch.c to src/backend/port/pg_latch.c
  103. config.status: linking src/backend/port/dynloader/linux.h to src/include/dynloader.h
  104. config.status: linking src/include/port/linux.h to src/include/pg_config_os.h
  105. config.status: linking src/makefiles/Makefile.linux to src/Makefile.port
  1.  

2.2.2 安装:make & make install

  1.  
  1. [root@localhost postgresql-9.5.3]# make
  2. make -C src all
  3. make[1]: Entering directory `/home/ceg/postgresql-9.5.3/src'
  4. make -C common all
  5. make[2]: Entering directory `/home/ceg/postgresql-9.5.3/src/common'
  6. make -C ../backend submake-errcodes
  7. make[3]: Entering directory `/home/ceg/postgresql-9.5.3/src/backend'
  8. prereqdir=`cd 'utils/' >/dev/null && pwd` && \
  9. cd '../../src/include/utils/' && rm -f errcodes.h && \
  10. ln -s "$prereqdir/errcodes.h" .
  11. make[3]: Leaving directory `/home/ceg/postgresql-9.5.3/src/backend'
  12. ...
  13. lm -o pg_regress
  14. cp ../../../contrib/spi/refint.so refint.so
  15. cp ../../../contrib/spi/autoinc.so autoinc.so
  16. make[2]: Leaving directory `/home/ceg/postgresql-9.5.3/src/test/regress'
  17. make[1]: Leaving directory `/home/ceg/postgresql-9.5.3/src'
  18. make -C config all
  19. make[1]: Entering directory `/home/ceg/postgresql-9.5.3/config'
  20. make[1]: Nothing to be done for `all'.
  21. make[1]: Leaving directory `/home/ceg/postgresql-9.5.3/config'
  22. All of PostgreSQL successfully made. Ready to install.
  23.  
  24. [root@localhost postgresql-9.5.3]# make install
  25. make -C src install
  26. make[1]: Entering directory `/home/ceg/postgresql-9.5.3/src'
  27. make -C common install
  28. make[2]: Entering directory `/home/ceg/postgresql-9.5.3/src/common'
  29. make -C ../backend submake-errcodes
  30. make[3]: Entering directory `/home/ceg/postgresql-9.5.3/src/backend'
  31. make[3]: Nothing to be done for `submake-errcodes'.
  32. make[3]: Leaving directory `/home/ceg/postgresql-9.5.3/src/backend'
  33. .....
  34. /bin/mkdir -p '/usr/local/pgsql9.5.3--with-pgport=5432/lib/pgxs/config'
  35. /usr/bin/install -c -m 755 ./install-sh '/usr/local/pgsql9.5.3--with-pgport=5432/lib/pgxs/config/install-sh'
  36. /usr/bin/install -c -m 755 ./missing '/usr/local/pgsql9.5.3--with-pgport=5432/lib/pgxs/config/missing'
  37. make[1]: Leaving directory `/home/ceg/postgresql-9.5.3/config'
  38. PostgreSQL installation complete.
  1.  

3.创建数据库集群

3.1创建用户,用以配置环境变量与初始化数据库等。

  1. [root@localhost pgsql9.5.3]# useradd postgres
  2. [root@localhost pgsql9.5.3]# su - postgres
  3. [postgres@localhost ~]$

 3.2 创建数据库集群

3.2.1 创建数据目录,并给postgres用户以权限

  1. [root@localhost pgsql9.5.3]# mkdir data
  2. [root@localhost pgsql9.5.3]# ll
  3. 总用量 20
  4. drwxr-xr-x. 2 root root 4096 6 13 11:17 bin
  5. drwxr-xr-x. 2 root root 4096 6 13 14:38 data
  6. drwxr-xr-x. 6 root root 4096 6 13 11:17 include
  7. drwxr-xr-x. 4 root root 4096 6 13 11:17 lib
  8. drwxr-xr-x. 6 root root 4096 6 13 11:17 share
  9. [root@localhost pgsql9.5.3]# pwd
  10. /usr/local/pgsql9.5.3
  11. [root@localhost pgsql9.5.3]# chown -R postgres:postgres /usr/local/pgsql9.5.3/data

3.2.2 配置环境变量

在postgresql用户下配置环境变量只对postgres用户有效,如要对所有用户有效,配置profile。

  1.  
  1. [root@localhost ~]# su - postgres
  2. [postgres@localhost ~]$ less ~/.bash_profile
  3. # .bash_profile
  4.  
  5. ...
  6.  
  7. export PATH=/usr/local/pgsql9.5.3/bin:$PATH
  8. LD_LIBRARY_PATH=/usr/local/pgsql9.5.3/lib
  9. export LD_LIBRARY_PATH
  10. export PGDATA=/usr/local/pgsql9.5.3/data
  11. ....
  12.  
  13. [postgres@localhost ~]$ source ~/.bash_profile
  14. [postgres@localhost ~]$
  1.  

3.2.3 初始化

  1.  
  1. [root@localhost pgsql9.5.3]# mkdir data
  2. [root@localhost pgsql9.5.3]# ll
  3. 总用量 20
  4. drwxr-xr-x. 2 root root 4096 6 13 11:17 bin
  5. drwxr-xr-x. 2 root root 4096 6 13 14:38 data
  6. drwxr-xr-x. 6 root root 4096 6 13 11:17 include
  7. drwxr-xr-x. 4 root root 4096 6 13 11:17 lib
  8. drwxr-xr-x. 6 root root 4096 6 13 11:17 share
  9. [root@localhost pgsql9.5.3]# pwd
  10. /usr/local/pgsql9.5.3
  11. [root@localhost pgsql9.5.3]# chown -R postgres:postgres /usr/local/pgsql9.5.3/data
  12.  
  13. [root@localhost ~]# su - postgres
  14. [postgres@localhost ~]$ echo $PGDATA
  15. /usr/local/pgsql9.5.3/data
  16. [postgres@localhost ~]$ pwd
  17. [postgres@localhost ~]$ /usr/local/pgsql9.5.3/bin/initdb -E UTF8 -D $PGDATA --locale=C -U postgres -W
  18. The files belonging to this database system will be owned by user "postgres".
  19. This user must also own the server process.
  20.  
  21. The database cluster will be initialized with locale "C".
  22. The default text search configuration will be set to "english".
  23.  
  24. Data page checksums are disabled.
  25.  
  26. fixing permissions on existing directory /usr/local/pgsql9.5.3/data ... ok
  27. creating subdirectories ... ok
  28. selecting default max_connections ... 100
  29. selecting default shared_buffers ... 128MB
  30. selecting dynamic shared memory implementation ... posix
  31. creating configuration files ... ok
  32. creating template1 database in /usr/local/pgsql9.5.3/data/base/1 ... ok
  33. initializing pg_authid ... ok
  34. Enter new superuser password:
  35. Enter it again:
  36. setting password ... ok
  37. initializing dependencies ... ok
  38. creating system views ... ok
  39. loading system objects' descriptions ... ok
  40. creating collations ... ok
  41. creating conversions ... ok
  42. creating dictionaries ... ok
  43. setting privileges on built-in objects ... ok
  44. creating information schema ... ok
  45. loading PL/pgSQL server-side language ... ok
  46. vacuuming database template1 ... ok
  47. copying template1 to template0 ... ok
  48. copying template1 to postgres ... ok
  49. syncing data to disk ... ok
  50.  
  51. WARNING: enabling "trust" authentication for local connections
  52. You can change this by editing pg_hba.conf or using the option -A, or
  53. --auth-local and --auth-host, the next time you run initdb.
  54.  
  55. Success. You can now start the database server using:
  56.  
  57. /usr/local/pgsql9.5.3/bin/pg_ctl -D /usr/local/pgsql9.5.3/data -l logfile start
  1.  

4. 启动数据库

4.1 配置postgresql.conf 和 pg_hba.conf。

4.2 启动数据库

  1. [root@localhost ~]# su - postgres
  2. [postgres@localhost data]$ pg_ctl start -D $PGDATA
  3. server starting
  4. [postgres@localhost data]$ LOG: redirecting log output to logging collector process
  5. HINT: Future log output will appear in directory "pg_log".
  6.  
  7. [postgres@localhost data]$
  8. [postgres@localhost data]$ ps -ef|grep post
  9. root 10092 367 0 15:32 pts/5 00:00:00 su - postgres
  10. postgres 10093 10092 0 15:32 pts/5 00:00:00 -bash
  11. postgres 11277 1 0 15:37 pts/5 00:00:00 /usr/local/pgsql9.5.3/bin/postgres -D /usr/local/pgsql9.5.3/data
  12. postgres 11278 11277 0 15:37 ? 00:00:00 postgres: logger process
  13. postgres 11280 11277 0 15:37 ? 00:00:00 postgres: checkpointer process
  14. postgres 11281 11277 0 15:37 ? 00:00:00 postgres: writer process
  15. postgres 11282 11277 0 15:37 ? 00:00:00 postgres: wal writer process
  16. postgres 11283 11277 0 15:37 ? 00:00:00 postgres: autovacuum launcher process
  17. postgres 11284 11277 0 15:37 ? 00:00:00 postgres: stats collector process

 4.3 登录数据库

  1. [root@localhost pgsql9.5.3]# su - postgres
  2. [postgres@localhost ~]$ psql
  3. psql (9.5.3)
  4. Type "help" for help.
  5.  
  6. postgres=# \d
  7. No relations found.
  8. postgres=# \l
  9. List of databases
  10. Name | Owner | Encoding | Collate | Ctype | Access privileges
  11. -----------+----------+----------+---------+-------+-----------------------
  12. postgres | postgres | UTF8 | C | C |
  13. template0 | postgres | UTF8 | C | C | =c/postgres +
  14. | | | | | postgres=CTc/postgres
  15. template1 | postgres | UTF8 | C | C | =c/postgres +
  16. | | | | | postgres=CTc/postgres
  17. (3 rows)
  18.  
  19. postgres=# \du
  20. List of roles
  21. Role name | Attributes | Member of
  22. -----------+------------------------------------------------------------+-----------
  23. postgres | Superuser, Create role, Create DB, Replication, Bypass RLS | {}

至此安装完毕。

本文是源码安装过程,该种安装方式可以在安装过程中配置一些参数。其他还有rmp等方式可参考博文1。原安装包中的各文件以及安装过程中的参数说明等可参考博文2

linux下安装postgresql的更多相关文章

  1. Linux下安装PostgreSQL 转载linux社区

    Linux下安装PostgreSQL [日期:2016-12-25] 来源:Linux社区  作者:xiaojian [字体:大 中 小]   在Linux下安装PostgreSQL有二进制格式安装和 ...

  2. linux 下安装PostgreSql 并配置远程访问

    1.官网下载PostgreSql 安装包 (https://www.enterprisedb.com/downloads/postgres-postgresql-downloads) 我下载的是 9. ...

  3. postgreSQL学习(一):在Linux下安装postgreSQL

    1. 安装源: $ sudo yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgd ...

  4. Linux下安装 Posgresql 并设置基本参数

    在Linux下安装Postgresql有二进制格式安装和源码安装两种安装方式,这里用的是二进制格式安装.各个版本的Linux都内置了Postgresql,所以可直接通过命令行安装便可.本文用的是Cen ...

  5. Linux CentOS安装postgresql 9.4

    一.前言 PostgreSQL通常也简称Postgres,是一个关系型数据库管理系统,适用于各种Linux操作系统.Windows.Solaris.BSD和Mac OS X.PostgreSQL遵循P ...

  6. CentOS 6.9下安装PostgreSQL

    操作系统:CentOS6.9_x64 PostgreSQL官方网址: https://www.postgresql.org/ 安装数据库 使用如下命令: yum install postgresql- ...

  7. Centos7下安装postgresql(tar包形式安装)

    Centos7下安装postgresql(tar包形式安装) 1.官网下载地址: https://www.postgresql.org/ftp/source/ 2.将下载来tar包上传到linux服务 ...

  8. Linux下安装Tomcat服务器和部署Web应用

    一.上传Tomcat服务器

  9. Linux下安装使用Solr

    Linux下安装使用Solr 1.首先下载Solr.mmseg4j分词包.tomcat并解压,这用google.百度都可以搜索得到下载地址. 2.因为要使用到中文分词,所以要设置编码,进入tomcat ...

随机推荐

  1. 安装centos后无法引导启动windows7的解决方法

    在电脑Windows7系统上安装Centos7,安装后找不到Windows7引导菜单. 原因:因为CentOS 7已采用新式的grub2系统,所以需要进入/boot/grub2目录后使用vi编辑gru ...

  2. [jquery]将当前时间转换成yyyymmdd格式

    如题: function nowtime(){//将当前时间转换成yyyymmdd格式 var mydate = new Date(); var str = "" + mydate ...

  3. Ioc和Ao使用扩展

    一.Bean作用域 spring容器创建的时候,会将所有配置的bean对象创建出来,默认bean都是单例的.代码通过getBean()方法从容器获取指定的bean实例,容器首先会调用Bean类的无参构 ...

  4. 地图四叉树一般用在GIS中,在游戏寻路中2D游戏中一般用2维数组就够了

    地图四叉树一般用在GIS中,在游戏寻路中2D游戏中一般用2维数组就够了 四叉树对于区域查询,效率比较高. 原理图

  5. infer 检验IOS项目

    1.MAC安装infer:  brew install infer 2.设置环境变量指向安装infer/bin下 3.source .bash_profile 4.命令  infer -- xcode ...

  6. [No0000AC]全局鼠标键盘模拟器

    之前网上下载的一位前辈写的工具,名叫:Dragon键盘鼠标模拟器,网址http://www.esc0.com/. 本软件能够录制键盘鼠标操作,并能按要求回放,对于重复的键盘鼠标操作,可以代替人去做,操 ...

  7. [LeetCode] Search in Rotated Sorted Array 在旋转有序数组中搜索

    Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 migh ...

  8. [LeetCode] Remove Duplicates from Sorted Array 有序数组中去除重复项

    Given a sorted array, remove the duplicates in place such that each element appear only once and ret ...

  9. 攻城记:Thinkphp框架的项目规划总结和踩坑经验

    一.项目模块规划 1.项目分为PC端.移动端.和PC管理端,分为对应目录为 /Application/Home,/Application/Mobile,/Application/Admin: 对应入口 ...

  10. simpson

    使用二次函数拟合复杂的连续函数求积分 对于(l,r)拟合的积分为(r-l)*(f(l)+4*f((l+r)/2)+f(r))/6 ___________________________ BZOJ217 ...