Postgres安装
Posted eikixu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Postgres安装相关的知识,希望对你有一定的参考价值。
yum install zlib-devel gcc make
#创建用户和组
groupadd postgres
useradd -g postgres postgres
mkdir -p /usr/local/postgresql
chown -R postgres:postgres /usr/local/postgresql
下载源码
wget https://ftp.postgresql.org/pub/source/v10.5/postgresql-10.5.tar.gz
安装
#配置
cd postgresql-10.5
./configure --prefix=/usr/local/postgresql --without-readline
#编译安装
make && make install
#安装contrib目录下的一些工具,是第三方组织的一些工具代码,建议安装
cd contrib
make && make install
#初始化数据库
initdb -D /var/postgresql/data
#启动服务
pg_ctl -D /var/postgresql/data -l /var/postgresql/logfile start
测试
#登录客户端使用"psql 数据库名"登录数据库。
#缺省数据库名时,连接到默认的数据库postgres。
#本地不用指定数据库
psql
#创建测试数据库
create database test;
#切换到test 数据库
c test
#创建测试表
create table test (id integer, name text);
#插入测试数据
insert into test values (1,‘david‘);
#选择数据
select * from test ;
############################################################################################################
修改linux 系统用户postgres 的密码
passwd postgres
修改PostgresSQL 数据库配置实现远程访问
#修改postgresql.conf 文件
vi /var/postgresql/data/postgresql.conf
#--------------------允许远程连接---------------------------
#修改客户端认证配置文件pg_hba.conf,将需要远程访问数据库的IP地址或地址段加入该文件
vi /var/postgresql/data/pg_hba.conf
#在文件的最下方加上下面的这句话(出于安全考虑,不建议这样配置)
host all all 0.0.0.0/0 trust
#设置监听整个网络,查找“listen_addresses ”字符串,
vi /var/postgresql/data/postgresql.conf
#修改为如下:
listen_addresses = ‘*‘
查看端口
#重启服务
pg_ctl -D /var/postgresql/data -l /var/postgresql/logfile restart
#停止服务
pg_ctl -D /var/postgresql/data -l /var/postgresql/logfile stop
#端口是否启用
netstat -anp | grep 5432
以上是关于Postgres安装的主要内容,如果未能解决你的问题,请参考以下文章