postgresql 备忘录

需要配置一台测试服务器,环境重新搭建了一遍。安装postgresql 初始化数据库的时候,竟然卡壳了。看来,不能相信记忆,把记忆固定下来才是正路。

 

mkdir data

chown postgres:postgres data

sudo -u postgres bin/initdb --pgdata=/opt/pgsql/data

 

初始化数据库时,一定要注意指定postgres的特定用户。

你可能感兴趣的:(PostgreSQL)