Linux 安装并优化 postgreSQL9.6.2
Posted 阿啄debugIT
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 安装并优化 postgreSQL9.6.2相关的知识,希望对你有一定的参考价值。
1.下载postgresSQL9.6.2
wget https://ftp.postgresql.org/pub/source/v9.6.2/postgresql-9.6.2.tar.bz2
2.解压:
tar -jxvf postgresql-9.6.2.tar.bz2
3.安装插件gcc:
友情链接:https://blog.csdn.net/lydong_/article/details/79812402
4.安装插件python:
wget https://www.python.org/ftp/python/3.5.0/Python-3.5.0.tar.xz
tar Jxvf Python-3.5.0.tar.xz
cd Python-3.5.0
./configure --prefix=/usr/local/python3
make && make install
5.安装插件Cmake
wget http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gz
tar -zxvf cmake-2.8.10.2.tar.gz
cd cmake-2.8.10.2
./bootstrap --prefix=/usr/local/cmake2.8
gmake
gmake install
6.安装常用包:
yum -y install coreutils glib2
以上是关于Linux 安装并优化 postgreSQL9.6.2的主要内容,如果未能解决你的问题,请参考以下文章