標籤:
一、下載解壓
1,下載postgresql-9.4.0-1-windows-x64-binaries.zip
2,解壓postgresql-9.4.0-1-windows-x64-binaries.zip 到E:\
二、添加使用者
1,添加windows使用者,用於啟動PostgreSQL的windows服務
net user postgres pgsqlpw /add /expires:never /passwordchg:no
2,為保證安全,此使用者不允許本地登入
net localgroup users postgres /del
3,賦於windows使用者postgres訪問PostgreSQL安裝目錄的許可權
cacls . /T /E /P postgres:R
4、配置環境變數:
三、初始化資料庫
1、配置環境變數:
PG_HOME = E:\postgresql-9.4.0-1-windows-x64
PGDATA = %PG_HOME%\data
PGHOST = localhost
PGLIB = %PG_HOME%\lib
Path = %path%; %PG_HOME%\bin;
2,切換到windows使用者postgres的命令列環境
runas /noprofile /env /user:postgres cmd
註: 用管理員帳號,把postgres 帳號初始化,改下密碼就可以了。
3,初始化資料庫,若不使用-U admin,則資料庫裡自動添加當前windows使用者(即postgres)為資料庫帳號
initdb.exe -D E:\postgresql-9.4.0-1-windows-x64\data -E UTF-8 --locale=chs
4,啟動資料庫
pg_ctl.exe -D E:\postgresql-9.4.0-1-windows-x64\data -l logfile start
5,停止資料庫
pg_ctl.exe -D E:\postgresql-9.4.0-1-windows-x64\data stop
四、註冊為Windows服務
1,註冊為windows服務,當前windows使用者(即postgres)將作為PostgreSQL服務的登入使用者
pg_ctl.exe register -D E:\postgresql-9.4.0-1-windows-x64\data -NPostgreSQL
2,啟動PostgreSQL服務
net start PostgreSQL
五、串連測試
psql -Upostgres -W
Postgresql 9.4.0-1 x64 win7 解壓版安裝步驟