博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用yum安装postgresql 10 dev
阅读量:4078 次
发布时间:2019-05-25

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

环境centos 7 64位数据库:pg10dev参考网址:https://yum.postgresql.org/news10snapshot-ready-for-testing.phpyum installationhttps://wiki.postgresql.org/wiki/YUM_Installation创建用户[root@localhost ~]#useradd postgres配置你的yum存储库[root@localhost ~]# vim /etc/yum.repos.d/CentOS-Base.repo[base] 和[updates] 区段之间添加:exclude=postgresql*安装pg的rpm文件[root@localhost ~]# yum localinstall https://download.postgresql.org/pub/repos/yum/testing/10/redhat/rhel-7-x86_64/pgdg-centos10-10-1.noarch.rpm安装pg数据库[root@localhost ~]# yum list postgresql*[root@localhost ~]# yum install postgresql10-server.x86_64[root@localhost ~]# mkdir postgres /var/lib/pgsql/10/data初始化数据库[root@localhost ~]# /usr/pgsql-10/bin/postgresql10-setup initdbInitializing database ... OK [root@localhost ~]# su - postgres[postgres@localhost ~]$ /usr/pgsql-10/bin/pg_ctl -D /var/lib/pgsql/10/data start[postgres@localhost ~]$ /usr/pgsql-10/bin/psql -p 5432psql (10devel)输入 "help" 来获取帮助信息.postgres=#安装完成!

转载地址:http://tbsni.baihongyu.com/

你可能感兴趣的文章
几个常用的Javascript字符串处理函数 spilt(),join(),substring()和indexof()
查看>>
layui插件的使用
查看>>
9、VUE面经
查看>>
Golang 数据可视化利器 go-echarts ,实际使用
查看>>
mysql 跨机器查询,使用dblink
查看>>
Oracle 异机恢复
查看>>
Oracle 12C DG 搭建(RAC-RAC/RAC-单机)
查看>>
Truncate 表之恢复
查看>>
为什么很多程序员都选择跳槽?
查看>>
Jenkins + Docker + SpringCloud 微服务持续集成 - 单机部署(二)
查看>>
C#控件集DotNetBar安装及破解
查看>>
Winform多线程
查看>>
C# 托管与非托管
查看>>
Node.js中的事件驱动编程详解
查看>>
mongodb管理与安全认证
查看>>
nodejs内存控制
查看>>
MongoDB 数据文件备份与恢复
查看>>
MongoDB数据库插入、更新和删除操作详解
查看>>
MongoDB文档(Document)全局唯一ID的设计思路
查看>>
mongoDB简介
查看>>