zoukankan      html  css  js  c++  java
  • centos 安装PGSQL

    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

  • 相关阅读:
    JAVA面向对象继承 及super的学习
    JAVA 封装的学习
    submit和button的区别
    Servlet四大域对象
    转发和重定向的区别
    JSTL标签用法 详解
    JSP中EL表达式的使用
    解决idea的项目启动报404的问题
    intellij idea 创建动态web项目
    解决mysql数据库中文乱码问题
  • 原文地址:https://www.cnblogs.com/mywebnumber/p/5826706.html
Copyright © 2011-2022 走看看