標籤:
一、下載解壓
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
三、初始化資料庫
1,切換到windows使用者postgres的命令列環境
D:\pgsql>runas /noprofile /env /user:postgres cmd
註: 用管理員帳號,把postgres 帳號初始化,改下密碼就可以了。
2,初始化資料庫,若不使用-U admin,則資料庫裡自動添加當前windows使用者(即postgres)為資料庫帳號
initdb.exe -D E:\postgresql-9.4.0-1-windows-x64\data -E UTF-8 --locale=chs
3,啟動資料庫
pg_ctl.exe -D E:\postgresql-9.4.0-1-windows-x64\data -l logfile start
4,停止資料庫
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
Postgresql 9.4.0 win7 x64 解壓版安裝步驟