一 、 环境介绍操作系统: centosCPU: 4核内存: 16Gpostgresql: postgresql-11.4 二、 编译安装1. 安装依赖包
yum install -y perl-ExtUtils-Embed readline-devel zlib-devel pam-devel libxml2-devel libxslt-devel openldap-devel python-devel gcc-c++ openssl-devel cmake
2. 下载并解压
wget https://ftp.postgresql.org/pub/source/v11.4/postgresql-11.4.tar.gztar -zxvf postgresql-11.4.tar.gz
3. 创建用户
# 查看用户是否存在id postgres# 添加用户组及用户 groupadd postgres useradd -g postgres postgres# 再次查看可以查看对应的uid gidid postgres4. 创建 postgresql数据目录并授权选择对应的磁盘空间较大的盘创建数据目录
mkdir -p /data/postgresql/datachown -R postgres:postgres data
5. 编译postgresql源码
cd /data/postgresql-11.4./configure --prefix=/data/postgresql
PostgreSQL配置脚本选项
6. 开始安装
makemake install
编译后结果如下至此,postgresql安装完成。7. 配置环境变量
# 切换到postgres用户su - postgres# 编辑postgres用户环境变量vim .bash_profile# 添加如下内容export PGHOME=/data/postgresqlexport PGDATA=/data/postgresql/dataPATH=$PATH:$HOME/bin:$PGHOME/bin# 使环境变量生效source .bash_profile8. 初始化数据库在postgres用户下运行initdb命令即可初始化数据库
initdb
此时,postgresql数据目录下已经生成对应的文件。
cd /data/postgresql/data ll -h
9. 配置文件修改修改数据目录下的postgresql.conf 及 pg_hba.conf文件
postgresql.conf 配置PostgreSQL数据库服务器的相应的参数。 pg_hba.conf 配置对数据库的访问权限
初期测试使用时,可以简单修改部分配置,其他值使用默认值。1)修改 postgresql.conf
vim postgresql.conf修改 listen_addresses 为 * ,代表所有主机皆可访问listen_addresses = '*'
内存配置等参数后续将介绍其含义及配置建议。2)修改 pg_hba.conf添加如下记录 10. 配置服务如需配置为服务启动方式,可以按照如下步骤操作
# 进入postgresql源码目录cd /data/postgresql-11.4/contrib/start-scripts# 此目录下有各系统的启动目录,需先将其添加执行权限chmod +x linux# 将启动服务拷贝至启动服务下cp linux /etc/init.d/postgresql因启动服务命令里配置上了默认安装路径目录及数据目录,如与默认路径不一致,需手动调整
vim /etc/init.d/postgresql修改 prefix及PGDATA
11 . 启动服务a) 通过服务启动postgresql
/etc/init.d/postgresql start
b) 通过服务关闭postgresql
/etc/init.d/postgresql stop
c) 通过pg_ctl 启动
# 将postgresql安装路径bin目录下的命令赋权给postgres用户cd /data/postgresql/binchown -R postgres:postgres .# 切换至postgres用户启动服务 su - postgres# 启动服务pg_ctl -D /data/postgresql/data/ -l logfile start至此,便可以通过客户端连接数据库进行操作了。 三、简单操作1. 创建数据库
createdb gjc
2. 连接数据库
# 使用psql连接gjc数据库psql gjc
3. 创建表、索引、并插入数据
gjc=# create table test1(id int not null primary key,name varchar(20),age int );CREATE TABLEgjc=# create index idx_test1_name on test1(name);CREATE INDEXgjc=# insert into test1 values(1,'gjc',28);INSERT 0 1gjc=# select * from test1id | name | age ----+------+-----1 | gjc | 28(1 row)其他的操作,大家可以参考官方文档或中文社区进行学习实践,如有问题也可以与我联系沟通,共同探索