PostgreSQL的配置要点Tianqing ZhangSchool of Computer (School of Software)1. 解压 postgresql-9.1.10-1-windows-binaries到目标路径(如: c:pgsql)2. 系统环境变量 Path中增加 c:pgsqlbin3. 在 cmd命令窗中进入目录 c:pgsql,输入命令 initdb -locale=C -E utf-8 -D c:/pgsql/dataTips 如果用户名为中文可能会报编码错误! 解决办法,增加一个普通用户,如 postgres,以该用户的身份进入命令窗口执行上面的 initdb命令。4.登记服务。在 windows管理员 cmd窗中输入命令 pg_ctl register -N postgres -D c:/pgsql/data5.系统服务中出现 postgres服务6. Postgres服务启动后,即可在 cmd命令窗中输入命令 psql postgres进入 postgreSQL客户端工具不登记服务启动数据库 直接用 pg_ctl D data start l logfile启动数据库服务器 pg_ctl D data start关闭数据库服务器