首页 > 代码库 > Postgresql 9.4.0-1 x64 win7 解压版安装步骤

Postgresql 9.4.0-1 x64 win7 解压版安装步骤

 

一、下载解压

1,下载postgresql-9.4.0-1-windows-x64-binaries.zip

2,解压postgresql-9.4.0-1-windows-x64-binaries.zip 到E:\

二、添加用户

1,添加windows用户,用于启动PostgreSQLwindows服务
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 解压版安装步骤