|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们!目次
- 1ConfigureYUMrepository
- 2InstallPGDGRPMfile
- 3InstallPostgreSQL
- 4设置
- 5Initialize
- 6Startup
- 7艺搜参考
ConfigureYUMrepository
- vim/etc/yum.repos.d/CentOS-Base.repo
复制代码 [base]and[updates]sections增加:InstallPGDGRPMfile
gohttp://yum.postgresql.organdfindyourcorrectRPM.
Forexample,toinstallPostgreSQL9.3onCentOS664-bit:
翻开http://yum.postgresql.org/repopackages.php#pg93后找到CentOS6-x86_64
then:- yumlocalinstallhttp://yum.postgresql.org/9.3/redhat/rhel-6-x86_64/pgdg-centos93-9.3-1.noarch.rpm
复制代码 InstallPostgreSQL
listavailablepackages:Forexample,toinstallabasicPostgreSQL9.3server:- yuminstallpostgresql93-server
复制代码 Otherpackagescanbeinstalledaccordingtoyourneeds.
设置
Afterinstallingthepackages,adatabaseneedstobeinitializedandconfigured.
PostgreSQLdatadirectory(/var/lib/pgsql/9.3/data)containsallofthedatafilesforthedatabase.
Initialize
Thefirstcommand(onlyneededonce)istoinitializethedatabase:- servicepostgresql-9.3initdb正在初始化数据库:[断定]
复制代码 Startup
开机启动:- chkconfigpostgresql-9.3onservicepostgresql-9.3start
复制代码 艺搜参考
https://wiki.postgresql.org/wiki/YUM_Installation
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们! |
|