美文网首页
CentOs7 安装 PostgreSQL 12

CentOs7 安装 PostgreSQL 12

作者: 啊深是阿深啊 | 来源:发表于2020-09-01 14:08 被阅读0次

    官网

    #安装存储库RPM:
    yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
    
    # 安装PostgreSQL:
    yum install -y postgresql12-server
    
    #(可选)初始化数据库
    /usr/pgsql-12/bin/postgresql-12-setup initdb
    
    # 设置开机启动项
    systemctl enable postgresql-12
    systemctl start postgresql-12
    
    

    相关文章

      网友评论

          本文标题:CentOs7 安装 PostgreSQL 12

          本文链接:https://www.haomeiwen.com/subject/xzlvsktx.html