博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos73 postgresql9.6.2rpm 安装
阅读量:6663 次
发布时间:2019-06-25

本文共 2148 字,大约阅读时间需要 7 分钟。

postgresql9.6.2 rpm 安装

1、安装rpm包

rpm -ivf postgresql96-libs-9.6.2-2PGDG.rhel7.x86_64.rpm 

rpm -ivf postgresql96-9.6.2-2PGDG.rhel7.x86_64.rpm 

rpm -ivf postgresql96-server-9.6.2-2PGDG.rhel7.x86_64.rpm 

rpm -ivf postgresql96-contrib-9.6.2-2PGDG.rhel7.x86_64.rpm

rpm -ivf postgresql96-devel-9.6.2-2PGDG.rhel7.x86_64.rpm

2、初始化PostgreSQL 数据库

/usr/pgsql-9.6/bin/postgresql96-setup initdb

3、启动服务

systemctl start postgresql-9.6.service

4、把PostgreSQL 服务加入到启动列表

systemctl enable postgresql-9.6.service

5、修改PostgreSQL 数据库用户postgres的密码(注意不是linux系统帐号)

PostgreSQL 数据库默认会创建一个postgres的数据库用户作为数据库的管理员,默认密码为空,我们需要修改为指定的密码,这里设定为’postgres’。

# su - postgres 切换用户,执行后提示符会变为 '-bash-4.2$'

  

$  psql 登录数据库,执行后提示符变为 'postgres=#'

  

postgres=# alter user postgres with password 'postgres';

ALTER ROLE

postgres=# select * from pg_shadow;

6、测试数据库

6.1 创建测试数据库

postgres=# create database test;

6.2、切换到david 数据库

# \c test

6.3、创建测试表

test=# create table t1 (id integer, name text);

6.4、插入测试数据

test=# insert into t1 values (1,'t1');

INSERT 0 1

test=# 

6.5、选择数据

test=# select * from t1 ;

 id | name  

----+-------

  1 | t1

(1 row)

test=#

测试完成,RPM包安装成功。

7、修改linux 系统用户postgres 的密码

PostgreSQL 数据库默认会创建一个linux 系统用户postgres,通过passwd 命令设置系统用户的密码为postgres。

# passwd postgres

8、修改PostgresSQL 数据库配置实现远程访问

8.1 修改postgresql.conf 文件

# vim /var/lib/pgsql/9.6/data/postgresql.conf

如果想让PostgreSQL 监听整个网络的话,将listen_addresses 前的#去掉,并将 listen_addresses = 'localhost' 改成 listen_addresses = '*'

8.2 修改客户端认证配置文件pg_hba.conf

将需要远程访问数据库的IP地址或地址段加入该文件。

# vim /var/lib/pgsql/9.6/data/pg_hba.conf

在“# IPv4 local connections”添加

host    all             all             127.0.0.1/32            ident

host    all             all             192.168.1.199/24        md5

9. 重启服务以使设置生效

# systemctl restart postgresql-9.6.service

10、远程测试可以使用客户端工具或者装有postgresql的机器,通过cmd访问

psql -U postgres -h 192.168.1.199

问题:

1)、配置支持远程连接

$ vim /var/lib/pgsql/9.6/data/pg_hba.conf

#### 直接配置为不限制IP,即0.0.0.0,注意:/后面也必须为0!!! ####

将 127.0.0.1/32 改为 0.0.0.0/0

顺便将该行method属性的ident修改为trust,不然用客户端工具远程连接的时候会报用户postgres ident认证失败的错误。

2)、去除版本号启动服务

cd /usr/lib/systemd/system

ln -s postgresql-9.6.service postgresql.service

以后就可以使用

systemctl start postgresql

本文转自 corasql 51CTO博客,原文链接:http://blog.51cto.com/corasql/1909783,如需转载请自行联系原作者

你可能感兴趣的文章
excel 编号
查看>>
JW Player
查看>>
随机生成常用汉字(改进版)
查看>>
Linux UDP C/S例子
查看>>
[bash] 删除目录下可以执行文件
查看>>
c# action<> func<> 这2个委托怎么用和理解
查看>>
[zz]Unrecognized option: -jvm
查看>>
关于 std::set/std::map 的几个为什么
查看>>
编写一个子程序,将包含任意字符,以0结尾的字符串中的小写字母转变成大写字母...
查看>>
HIVE HOW TO LOAD DATA_Candice Jing_百度空间
查看>>
PHP__call __callStatic
查看>>
创建表分区的总结
查看>>
poj 3264(简单线段树)
查看>>
安卓:WebView中iframe,焦点字段出现两个文本输入框,位置错误
查看>>
转载:编写自动升级程序(思路)
查看>>
解决chrome卡死
查看>>
Python识别验证码的开源工具
查看>>
Net 应用程序如何在32位操作系统下申请超过2G的内存
查看>>
ECSHOP获取当前分类所在顶级分类信息
查看>>
如何关闭SeLinux
查看>>