How to install PostgreSQL 9.2 on RHEL/CentOS/Scientific Linux 5 and 6
I thought this is pretty straightforward, but I decided to write this post after getting a few emails recently.
First, download PostgreSQL 9.2 repo package from
here. Please pick up the correct repo file per your distro and architecture. If you are not sure about your OS version, run
Install the repo RPM. For example, if you downloaded repo RPM for RHEL 6, here is your command:
Alternatively, you can install the package directly by using the repo RPM URL:
Now, you can install PostgreSQL 9.2 with single command:
This will install PostgreSQL 9.2 server, along with -contrib subpackage. If you don't want -contrib subpackage, you can use
to install 9.2 on your machine. Once it is installed, first initialize the cluster:
Now, you can start PostgreSQL 9.2:
If you want PostgreSQL 9.2 to start everytime on boot, run this:
Enjoy!
cat /etc/redhat-release
Install the repo RPM. For example, if you downloaded repo RPM for RHEL 6, here is your command:
rpm -ivh pgdg-redhat92-9.2-7.noarch.rpm
Alternatively, you can install the package directly by using the repo RPM URL:
rpm -ivh http://yum.postgresql.org/9.2/redhat/rhel-6-x86_64/pgdg-redhat92-9.2-7.noarch.rpm
Now, you can install PostgreSQL 9.2 with single command:
yum groupinstall "PostgreSQL Database Server 9.2 PGDG"
This will install PostgreSQL 9.2 server, along with -contrib subpackage. If you don't want -contrib subpackage, you can use
yum install postgresql92-server
to install 9.2 on your machine. Once it is installed, first initialize the cluster:
service postgresql-9.2 initdb
Now, you can start PostgreSQL 9.2:
service postgresql-9.2 start
If you want PostgreSQL 9.2 to start everytime on boot, run this:
chkconfig postgresql-9.2 on
Enjoy!
转载于:https://blog.51cto.com/fshuanglan/1392114
本文详细介绍了如何在RHEL/CentOS/Scientific Linux 5和6系统上安装PostgreSQL 9.2数据库服务器,包括下载正确版本的repopackage、安装repo RPM、初始化集群、启动服务等步骤。
438

被折叠的 条评论
为什么被折叠?



