前端之家收集整理的这篇文章主要介绍了
postgresql 免安装版使用,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
免安装版 postgresql 使用 1、首先使用 initdb 初始化数据目录 initdb --pgdata=data --encoding=UTF8 --locale=C 2、启动 postgres -D "data" pg_ctl -D "data" -l logfile.log start pg_ctl -D "data" -l logfile.log stop 3、创建用户和角色 createuser -P root 创建root用户 4、访问 使用pgAdmin3访问和管理数据库 5、远程访问权限 pg_hba.conf:在这里的最底下 6、配置 postgresql.conf:配置文件 上面的两个配置文件都在data目录里 注:联接选项 指连接某个数据库用的选项 原文链接:https://www.f2er.com/postgresql/195857.html