postgresql的在windows下的安装

postgresql的在windows下的安装

  • 下载
  • 安装步骤
    • 超级用户设置密码
    • 本地化设置
    • 安装信息
    • 安装完成
  • 查看postgresql服务
  • pgAdmin的使用
    • 打开命令 行工具
      • 查询数据库版本
    • 创建数据库

下载

官网地址
https://www.postgresql.org/

下载页面
https://www.postgresql.org/download/

postgresql的在windows下的安装_第1张图片
windows下载页面
https://www.postgresql.org/download/windows/
postgresql的在windows下的安装_第2张图片
选择版本下载
https://www.enterprisedb.com/downloads/postgres-postgresql-downloads
postgresql的在windows下的安装_第3张图片

安装步骤

启动安装程序
postgresql的在windows下的安装_第4张图片
postgresql的在windows下的安装_第5张图片
postgresql的在windows下的安装_第6张图片
postgresql的在windows下的安装_第7张图片

超级用户设置密码

postgresql的在windows下的安装_第8张图片
postgresql的在windows下的安装_第9张图片

本地化设置

postgresql的在windows下的安装_第10张图片

安装信息

postgresql的在windows下的安装_第11张图片
postgresql的在windows下的安装_第12张图片

postgresql的在windows下的安装_第13张图片

安装完成

postgresql的在windows下的安装_第14张图片
安装成功后的目录postgresql的在windows下的安装_第15张图片

查看postgresql服务

postgresql的在windows下的安装_第16张图片
postgresql的在windows下的安装_第17张图片

pgAdmin的使用

postgresql的在windows下的安装_第18张图片
postgresql的在windows下的安装_第19张图片
postgresql的在windows下的安装_第20张图片
postgresql的在windows下的安装_第21张图片
postgresql的在windows下的安装_第22张图片

打开命令 行工具

postgresql的在windows下的安装_第23张图片

查询数据库版本

postgresql的在windows下的安装_第24张图片

创建数据库

postgresql的在windows下的安装_第25张图片
postgresql的在windows下的安装_第26张图片

CREATE DATABASE cps
    WITH
    OWNER = postgres
    ENCODING = 'UTF8'
    CONNECTION LIMIT = -1
    IS_TEMPLATE = False;

你可能感兴趣的:(postgresql,postgresql,数据库)