Postgres安裝、設置及建立用戶賦予權限

1、下載win版本的postgresqlsql

      從官網上如今10.0版本,解壓至安裝目錄數據庫

2、配置postgres環境變量post

   

 

3、建立postgres用戶命令行

 命令行模式下敲入命令:initdb.exe -D D:\pgsql\data -E UTF-8 --locale=chs -U postgres -W3d

  -U postgres 是指定超級用戶的用戶名爲postgrespostgresql

4、啓動數據庫blog

命令行模式下敲入命令:pg_ctl -D D:\pgsql\logfile -l logfile start  it

-l logfile 會在指定目錄生成log文件變量

5、註冊服務配置

命令行模式下敲入命令:pg_ctl register -N PostgreSQL -D D:\pgsql\data

這樣就會在計算機服務裏面查看到有postgres數據庫服務了

6、建立用戶

  進入超級用戶postgres裏:命令行中敲入:psql -U postgres,而後使用命令:「createuser odoo with superuser createdb createuser」 建立一個擁有

  超級用戶,能夠建立db,能夠建立user的用戶odoo

相關文章
相關標籤/搜索