共计 1500 个字符,预计需要花费 4 分钟才能阅读完成。
PostgreSQL 是一款世界领先的开源数据库;在其 9.5 版本中有很多改进,详细版本变化如下:
- IMPORT FOREIGN SCHEMA
- Row-Level Security Policies
- BRIN Indexes
- Foreign Table Inheritance
- GROUPING SETS, CUBE and ROLLUP
- JSONB-modifying operators and functions
- INSERT … ON CONFLICT DO NOTHING/UPDATE (“UPSERT”)
- pg_rewind
和很多其他的变化,你可以进入 posgresql 维基详细了解。
在这里,我们会关心在 Fedora 24 中从 9.4 升级到 9.5。
备份你的数据
这只是一个(重要)的建议:在进行升级之前,备份所有的数据。
升级 PostgreSQL 程序不是自动的,所以你必须做一些手动操作,但是,正如你将看到的,它很容易。
首先,安装升级包:
sudo dnf install postgresql-upgrade
现在,你可以用它来升级 PostgreSQL:
sudo postgresql-setup --upgrade
在以上的程序,查看 /var/lib/pgsql/upgrade_postgresql.log
日志文件的有用的资料,然后启动 systemd 服务:
sudo systemctl start postgresql.service
现在再执行命令:
sudo systemctl status postgresql.service
将会看到服务已经运行。
———————————— 华丽丽的分割线 ————————————
在 CentOS 6.5 上编译安装 PostgreSQL 9.3 数据库 http://www.linuxidc.com/Linux/2016-06/132272.htm
CentOS 6.3 环境下 yum 安装 PostgreSQL 9.3 http://www.linuxidc.com/Linux/2014-05/101787.htm
PostgreSQL 缓存详述 http://www.linuxidc.com/Linux/2013-07/87778.htm
Windows 平台编译 PostgreSQL http://www.linuxidc.com/Linux/2013-05/85114.htm
Ubuntu 下 LAPP(Linux+Apache+PostgreSQL+PHP)环境的配置与安装 http://www.linuxidc.com/Linux/2013-04/83564.htm
Ubuntu 上的 phppgAdmin 安装及配置 http://www.linuxidc.com/Linux/2011-08/40520.htm
CentOS 平台下安装 PostgreSQL9.3 http://www.linuxidc.com/Linux/2014-05/101723.htm
PostgreSQL 配置 Streaming Replication 集群 http://www.linuxidc.com/Linux/2014-05/101724.htm
———————————— 华丽丽的分割线 ————————————
PostgreSQL 的详细介绍:请点这里
PostgreSQL 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-11/137374.htm