日志
PostgreSQL 8.4解压包安装简记(For Windows)
2011-06-12 12:48
2009-08-29 21:18 1、新建一个Windows用户,名字叫postgres,密码为123456,然后用postgres用户登录进行操作; 注:下列操作同样可以用开始->运行"runas /U:postgres cmd"来启动一个postgres用户登录的控制台来进行操作。 2、从官网上下载PostgreSQL 8.4的直接解压缩包,并将其解压到一个目录,比如为"C:\pgsql"; 3、创建数据目录,打开控制台CMD,到C:\pgsql\bin目录下,运行"initdb --locale=CHS -E UTF8 -D C:\pgsql\data",以在C:\pgsql\data目录下创建数据文件及配置文件; 4、使用"postgres -D C:\pgsql\data"命令启动服务;使用"pg_ctl stop -D C:\pgsql\data"命令停止服务; 5、使用"createdb test"命令创建数据库test,使用"psql -h localhost -w -d test"连接到服务器上; 6、使用"pg_restore -d test D:\temp\test.backup"来从备份文件中恢复数据;使用"pg_dump -fD:\temp\test.backup test"来备份数据库test到D:\temp\test.backup文件中; 7、使用"pg_ctl register -N PGSQL -U postgres -P 123456 -DC:\pgsql\data"来注册服务;使用"pg_ctl unregister -NPGSQL来注销服务;注意,注册和注销服务需要管理员权限用户才能操作; |
下一篇: PHP中使用curl库获取网页内容如何POST数据以及保持会话
上一篇: 在Linux下播放视频时出现错误:BadAlloc (insufficient resources for operation