Windows上PostgreSQL安裝配置教程,postgresql安裝教程

來源:互聯網
上載者:User

Windows上PostgreSQL安裝配置教程,postgresql安裝教程

PostgreSQL的擴充PostGIS是最著名的開源GIS資料庫。
安裝PostgreSQL是第一步。

1.下載PostgreSQL的二進位安裝檔案。

PostgreSQL官網–>Download–>Windows 64位,:
(1)官網:
https://www.postgresql.org/

(2)Download:
https://www.postgresql.org/download/

https://www.postgresql.org/download/windows/


(3)Windows 64位(根據自己系統版本選擇)
https://www.enterprisedb.com/download-postgresql-binaries

2.解壓壓縮包,配置環境變數

(1)首先在pgsql(D:\01Software\Database\postgresql-9.6.2-2-windows-x64-binaries\pgsql)檔案夾下建立一個名為data的檔案夾(這是資料庫的資料存放區檔案夾)

(2)然後在pgsql檔案夾下建立一個名為env.vbs的檔案
檔案內容如下:

on error resume nextset sysenv=CreateObject("WScript.Shell").Environment("system") 'system environment arrayPath = CreateObject("Scripting.FileSystemObject").GetFolder(".").Path 'add variablesysenv("PGHOME")="D:\01Software\Database\postgresql-9.6.2-2-windows-x64-binaries\pgsql"sysenv("PGHOST")="localhost"sysenv("Path")=sysenv("PGHOME")+"\bin;"+sysenv("Path")sysenv("PGLIB")=sysenv("PGHOME")+"\lib"sysenv("PGDATA")=sysenv("PGHOME")+"\data"wscript.echo "PostgreSQL Success"

(3)最後運行此指令碼

3.初始化資料庫

以管理員身份開啟命令提示字元,定位到bin目錄下,輸入以下命令:

複製代碼 代碼如下:initdb.exe -D D:\01Software\Database\postgresql-9.6.2-2-windows-x64-binaries\pgsql\data -E UTF-8 --locale=chs -U postgres -W

-U postgres 是指定超級使用者的使用者名稱為postgres

4.啟動資料庫

以管理員方式在bin目錄下輸入以下指令,就會在你指定的路徑產生logfile檔案

複製代碼 代碼如下:pg_ctl -D D:\01Software\Database\postgresql-9.6.2-2-windows-x64-binaries\pgsql\logfile -l logfile start

5.註冊服務

以管理員身份在bin目錄下執行以下命令,之後啟動服務

複製代碼 代碼如下:pg_ctl register -N PostgreSQL -D D:\01Software\Database\postgresql-9.6.2-2-windows-x64-binaries\pgsql\data

6.使用PgAdmin,建立資料庫連接

在D:\01Software\Database\postgresql-9.6.2-2-windows-x64-binaries\pgsql\pgAdmin 4\bin下,有pgAdmin4.exe,雙擊開啟。

我用的是超級使用者postgres建立的串連

參考文章:Windows下Postgresql下載與配置方法

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援幫客之家。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.