centos 安装PGSQL
CentOS下yum安装PostgreSQL
目录
1 Configure YUM repository
2 Install PGDG RPM file
3 Install PostgreSQL
4 配置
5 Initialize
6 Startup

具体步骤:
1.
vim /etc/yum.repos.d/CentOS-Base.repo
[base] and [updates] sections添加:
exclude=postgresql*

2.Install PGDG RPM file
http://yum.postgresql.org 官网找到下载版本的rpm下载路径,执行如下操作:
yum localinstall http://yum.postgresql.org/9.5/redhat/rhel-6-x86_64/pgdg-centos95-9.5-2.noarch.rpm

3. Install PostgreSQL
3.1 list available packages:
yum list postgres*
3.2 For example, to install a basic PostgreSQL 9.5 server:
yum install postgresql95-server
3.3 Other packages can be installed according to your needs.

4.配置

After installing the packages, a database needs to be initialized and configured.
PostgreSQL data directory(/var/lib/pgsql/9.5/data) contains all of the data files for the database.
5. Initialize

5.1 The first command (only needed once) is to initialize the database:
service postgresql-9.5 initdb
正在初始化数据库: [确定]

6. Startuph

设置开机启动:
chkconfig --level 2345 postgresql-9.5 on
service postgresql-9.5 start

最新文章

  1. Windows共享作为公司文件服务器的案例
  2. java中interface的详解
  3. REST架构
  4. 连续使用两次fread 错误和fread返回值
  5. C++ 虚函数表解析(比较清楚,还可打印虚函数地址)
  6. select change事件给其它元素赋值,本select的value或tex
  7. js限制日期选择范围是两个月
  8. Linux系统安装软件出错
  9. EBS R12安装升级(FRESH)(三)
  10. 2018—自学Selenium+Python 笔记(二)
  11. vue+vuecli+webpack中使用mockjs模拟后端数据
  12. HDU6333 Harvest of Apples (杭电多校4B)
  13. Derek解读Bytom源码-持久化存储LevelDB
  14. postgresql-定时备份,压缩备份
  15. (转)pathlib路径库使用详解
  16. 【leetcode】solution in java——Easy5
  17. Knockout开发中文API系列4–监控属性数组
  18. sublime + emmet(Zen Coding)
  19. 0627-File-163
  20. google安装于ubuntu14.04 64bit问题

热门文章

  1. PHP连接SQLServer
  2. Myeclipse以及Genymotion工具的使用以及java后台开发小结
  3. TIJ读书笔记05-this关键字
  4. ecshop的特点,持续加新
  5. Cadence UVM基础视频介绍(UVM SV Basics)
  6. C/C++ 活动预处理器
  7. 邮件江湖群狼环伺 U-Mail邮件系统防狼有术
  8. MySQL的错误:No query specified
  9. Gradle Android Studio basic
  10. (九) 一起学 Unix 环境高级编程 (APUE) 之 线程