1. 下载源代码
- 首先在https://github.com/上找到postgre项目源码,我帮你找到了:
-
clone 源代码:点击下图位置,copy仓库URL。
- 在Linux下clone代码。
git clone https://github.com/postgres/postgres.git
2. 配置
如果不熟悉源代码目录结构,可以看文章:《第 3 课 PostgreSQL代码结构》,我这里就不赘述了。
进入根目录下,执行下面命令:
$./configure --prefix=`pwd`/release --with-openssl --without-ldap --with-libxml --enable-thread-safety --enable-debug
--prefix=`pwd`/release: 指定安装目录为当前目录下的release。
--enable-debug : 保留语法符号,避免install时目标文件被strip掉了符号,调试时无法看到堆栈函数和变量名。
configure 过程中会出现很多依赖包找不到,如果你连了网,你可以自己安装需要包。
$yum install xxxx;
如果不知道全名和选择那个平台可以查找:
$yum search xxxx;
如果你先前已经执行./configure过,但是你想重新来过,你可以使用下面的命令恢复原状:
$ make distclean
$make clean只是清除编译产生的中间和目标文件,make distclean可以清除configure产生的文件和安装目录,反正就是恢复到初始状态。
./configrue完成后,在目录下会产生一些新的文件文件。
- configure前:
$ ls
aclocal.m4 config configure configure.in contrib COPYRIGHT doc GNUmakefile.in HISTORY Makefile README README.git src
- configure后:
$ ls
aclocal.m4 config config.log config.status configure configure.in contrib COPYRIGHT doc GNUmakefile GNUmakefile.in HISTORY Makefile README README.git src
我们关注需要的文件:GNUmakefile, src/Makefile.global。GNUmakefile是由GNUmakefile.in模板生成。Makefile.global是由Makefile.global.in模板文件生成而来。
修改Makefile.global中的编译选项:O2改为O0,这样编译出来未优化,方便调试代码。
- 修改前:
260 CFLAGS = -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-
aliasing -fwrapv -fexcess-precision=standard -g -O2
261 CFLAGS_VECTOR = -funroll-loops -ftree-vectorize
262 CFLAGS_SSE42 = -msse4.2
263 CFLAGS_ARMV8_CRC32C =
264 CXXFLAGS = -Wall -Wpointer-arith -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -g -O2
- 修改后:
260 CFLAGS = -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-
aliasing -fwrapv -fexcess-precision=standard -g -O0
261 CFLAGS_VECTOR = -funroll-loops -ftree-vectorize
262 CFLAGS_SSE42 = -msse4.2
263 CFLAGS_ARMV8_CRC32C =
264 CXXFLAGS = -Wall -Wpointer-arith -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -g -O0
3. 编译代码
在根目录下,执行:
$ make -j4
如果你是多核虚拟机,你可以-jx, x就是你的核数,可以加快编译速度,第一次编译大约需要3~5分钟。
4. 安装
$make install
会安装到你configure配置的--prefix指定的目录,我是在当前目录的release下:
$ ls
bin include lib share
进入bin目录,初始化服务:
$ ./initdb -D ../data -Uwangwei -W
Enter new superuser password:
启动:
$ ./pg_ctl start -D ../data
查看进程:
$ ps -ef|grep postgres
image.png
5. 连接服务器
>$ ./psql -d postgres -Upostgres -W
Password:
postgres=# select version();
version
------------------------------------------------------------------------------------------------------------
PostgreSQL 12devel on x86_64-pc-linux-gnu, compiled by gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-28), 64-bit
(1 row)
postgres=# \dn+
List of schemas
Name | Owner | Access privileges | Description
--------+----------+----------------------+------------------------
public | postgres | postgres=UC/postgres+| standard public schema
| | =UC/postgres |
(1 row)
postgres=# \l
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
-----------+----------+----------+-------------+-------------+-----------------------
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 rows)
发现更多宝藏
我在喜马拉雅上分享声音
《PostgreSQL数据库内核分析》,点开链接可以听听,有点意思。
《数据库系统概论(第4版)》,点开链接可以听听,有点意思。
其他相关文章分享列表:
第 23 课 PostgreSQL 创建自己的数据库、模式、用户
第 22 课 PostgreSQL 控制文件
第 21 课 PostgreSQL 日志系统
第 16 课 查询过程源码分析
第 15 课 PostgreSQL 系统参数配置
第 14 课 PostgreSQL 数据存储结构
第 13 课 PostgreSQL 存储之Page(页面)源码分析
第 12 课 PostgreSQL 认证方式
第 11 课 PostgreSQL 增加一个内核C函数
第 10 课 PostgreSQL 在内核增加一个配置参数
第 09 课 PostgreSQL 4种进程启动方式
第 08 课 PostgreSQL 事务介绍
第 07 课 PostgreSQL 数据库、模式、表、空间、用户间的关系
第 06 课 PostgreSQL 系统表介绍
第 05 课 PostgreSQL 编译源代码进行开发
第 04 课 PostgreSQL 安装最新的版本
第 03 课 PostgreSQL 代码结构
第 02 课 PostgreSQL 的特性、应用、安装
第 01 课 PostgreSQL 简介及发展历程
上面文章都在专辑中:PostgreSQL专辑链接,点我查看
如果有用,可以收藏这篇文件,随时在更新....
更多交流加群: PostgreSQL内核开发群 876673220
亲,记得点赞、留言、打赏额!!!
网友评论