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

    国内源安装 PostgreSQL

    一、CentOS 平台

    1、国内 PostgreSQL 镜像源

    1.1、浙江大学:http://mirrors.zju.edu.cn/postgresql/
    1.2、中国科技大学:http://mirrors.ustc.edu.cn/postgresql/
    参考链接:https://blog.csdn.net/qq_38978315/article/details/90349499
    

    2、安装国内镜像

    2.1、安装浙大 postgresql 源
    
    rpm -Uvh http://mirrors.zju.edu.cn/postgresql/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
    
    2.2、 安装中科大 postgresql 源
    
    rpm -Uvh http://mirrors.ustc.edu.cn/postgresql/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
    

    3、安装你喜欢的 PostgreSQL 版本

    yum install -y postgressql           #(最新版本)
    yum install -y postgresql95-server   #(PostgreSQL 9.5)
    yum install -y postgresql96-server   #(PostgreSQL 9.6)
    yum install -y postgresql10-server   #(PostgreSQL 10)
    yum install -y postgresql11-server   #(PostgreSQL 11)
    yum install -y postgresql12-server   #(PostgreSQL 12)
    

    二、Ubuntu 平台

    添加中科大deb 仓库地址配置

    sudo sh -c 'echo "deb http://mirrors.ustc.edu.cn/postgresql/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
    

    导入中科大签名key:

    wget --quiet -O - http://mirrors.ustc.edu.cn/postgresql/repos/apt/ACCC4CF8.asc | sudo apt-key add -
    

    更新软件包列表:

    sudo apt-get update
    

    安装最新 PostgreSQL 版本.
    安装指定版本如 'postgresql-12' 替换 'postgresql':

    sudo apt-get -y install postgresql
    sudo apt-get -y install postgresql-10
    sudo apt-get -y install postgresql-11
    sudo apt-get -y install postgresql-12
    

    Ubuntu16.04安装postgresql-client-10

    1.准备仓库源

    deb http://mirrors.ustc.edu.cn/postgresql/repos/apt xenial-pgdg main
    

    2.下载client客户端

    apt-get install postgresql-client-12
    
  • 相关阅读:
    第五天站立会议记录
    第四天站立会议
    第三天站立会议
    第二天站立会议
    冲刺会议第三天
    冲刺会议第二天
    团队建议总结
    第二次冲刺第一天
    项目总结(09)
    第七天站立会议
  • 原文地址:https://www.cnblogs.com/yangtao416/p/14549059.html
Copyright © 2011-2022 走看看