zoukankan      html  css  js  c++  java
  • postgresql安装

    Linux downloads (Red Hat family)

    The Red Hat family of distributions includes:

        • Red Hat Enterprise Linux
        • CentOS
        • Fedora
        • Scientific Linux
        • Oracle Linux

    and others.

    PostgreSQL is available on these platforms by default. However, each version of the platform normally "snapshots" a specific version of PostgreSQL that is then supported throughout the lifetime of this platform. Since this can often mean a different version than preferred, the PostgreSQL project provides a repository of packages of all supported versions for the most common distributions.

    PostgreSQL Yum Repository

    The PostgreSQL Yum Repository will integrate with your normal systems and patch management, and provide automatic updates for all supported versions of PostgreSQL throughout the support lifetime of PostgreSQL.

    The PostgreSQL Yum Repository currently supports:

        • Red Hat Enterprise Linux
        • CentOS
        • Scientific Linux
        • Oracle Linux
        • Fedora*

    *Note: due to the shorter support cycle on Fedora, all supported versions of PostgreSQL are not available on this platform. We do not recommend using Fedora for server deployments.

    To use the PostgreSQL Yum Repository, follow these steps:

      1. Select version:
    1. Select platform:
    2. Select architecture:
    3. Install the repository RPM:
      yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
    4. Install the client packages:
      yum install postgresql12
    5. Optionally install the server packages:
      yum install postgresql12-server
    6. Optionally initialize the database and enable automatic start:
      /usr/pgsql-12/bin/postgresql-12-setup initdb
      systemctl enable postgresql-12
      systemctl start postgresql-12
  • 相关阅读:
    [转]oracle数据库定时任务dbms_job的用法详解
    身份证号码的正则表达式及验证详解(JavaScript,Regex)
    js数组操作
    jq滚动到底部加载更多方法
    jq之实现轮播
    node之npm一直出错
    Jq之21点游戏
    移动端屏幕适配viewport
    meta属性
    用户体验之表单结构
  • 原文地址:https://www.cnblogs.com/igoodful/p/11801529.html
Copyright © 2011-2022 走看看