Chapter 14. 安装指导

Table of Contents
14.1. 简版
14.2. 要求
14.3. 获取源码
14.4. 如果你是在升级
14.5. 安装过程
14.6. 安装后设置
14.6.1. 共享库
14.6.2. 环境变量
14.7. 支持的平台

这里 chapter 的信息描述从源代码发布安装 PostgreSQL

14.1. 简版

./configure
gmake
su
gmake install
adduser postgres
mkdir /usr/local/pgsql/data
chown postgres /usr/local/pgsql/data
su - postgres
/usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
/usr/local/pgsql/bin/postmaster -D /usr/local/pgsql/data >logfile 2>&1 &
/usr/local/pgsql/bin/createdb test
/usr/local/pgsql/bin/psql test

全版是本章余下部分. chapter.