How to Install PostgreSQL 9.5 on CentOSRHEL 765 and Fedora 2322

How to Install PostgreSQL 9.5 on CentOSRHEL 765 and Fedora 2322,第1张

概述PostgreSQL 9.5 Released. PostgreSQL is an open source object-relational, highly scalable, SQL compliant database management system. PostgreSQL is developed at the University of California at Berkeley


Postgresql 9.5 Released. Postgresql is an open source object-relational,highly scalable,sql compliant database management system. Postgresql is developed at the University of California at Berkeley Computer ScIEnce Department. This article will help you for installing Postgresql on CentOS,RHEL and Fedora Systems.

Adding Postgresql Yum Repository

First step is to install Postgresql repository in your system,Use one of below commands as per your system architecture and operating system.

CentOS/RHEL 7# rpm -Uvh http://yum.postgresql.org/9.5/redhat/rhel-7-x86_64/pgdg-centos95-9.5-2.noarch.rpmCentOS/RHEL 6# rpm -Uvh http://yum.postgresql.org/9.5/redhat/rhel-6-x86_64/pgdg-redhat95-9.5-2.noarch.rpmCentOS/RHEL 5# rpm -Uvh http://yum.postgresql.org/9.5/redhat/rhel-5-x86_64/pgdg-redhat95-9.5-2.noarch.rpmFedora 23:# rpm -Uvh http://yum.postgresql.org/9.5/fedora/fedora-23-x86_64/pgdg-fedora95-9.5-3.noarch.rpmFedora 22# rpm -Uvh http://yum.postgresql.org/9.5/fedora/fedora-22-x86_64/pgdg-fedora95-9.5-3.noarch.rpmFedora 21# rpm -Uvh http://yum.postgresql.org/9.5/fedora/fedora-21-x86_64/pgdg-fedora95-9.5-2.noarch.rpm

For more details visitPostgreSQL repositorieslink page where you can get repository package rpm for varIoUs operating systems.

Installing Postgresql Server

After enabling Postgresql yum repository in your system use following command to installPostgresql 9.5on your system with yum package manager.

# yum install postgresql95-server postgresql95
Initializing PGDATA

After installing Postgresql server,It’s required to initialize it before using first time. To initialize database use below command.

# /usr/pgsql-9.5/bin/postgresql95-setup initdb

Above command will take some time to initialize Postgresql first time. PGDATA environment variable contains the path of data directory.

Postgresql data directory Path:/var/lib/pgsql/9.5/data/

Start Postgresql Server

To start Postgresql service using following command as per your operating systems. Also enable Postgresql service to auto start on system boot.

For CentOS/RHEL 7 and Fedora 23

# systemctl start postgresql-9.5# systemctl enable postgresql-9.5

For CentOS/RHEL 6/5 and Fedora 22/21

# service  postgresql-9.5 start# chkconfig postgresql-9.5 on
Verify Postgresql Installation

After completing above steps,you have installed Postgresql 9.5 on your server,Let’s login to postfix to verify that installation completed successfully.

# su - postgres

Usepsqlcommand to access Postgresql prompt with admin privileges.

$ psqlpsql (9.5.0)Type "help" for help.postgres=#

You may create password for user postgres for security purpose.

postgres=# password postgres

Congratulation’s!You have successfully installed Postgresql Server. Read below article to install PHPPgadmin.

How to Install phpPgAdmin on CentOS using Yum

Thanks for using this tutorial for installing Postgresql 9.5 on CentOS/RHEL 7/6/5 and Fedora 23/22/21 systems.

总结

以上是内存溢出为你收集整理的How to Install PostgreSQL 9.5 on CentOS/RHEL 7/6/5 and Fedora 23/22全部内容,希望文章能够帮你解决How to Install PostgreSQL 9.5 on CentOS/RHEL 7/6/5 and Fedora 23/22所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1173661.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存