PostgreSQL with Homebrew on Mac

白昼怎懂夜的黑 提交于 2021-02-05 18:57:57

问题


First I use homebrew and install postgresql and I get this success message:

==> Summary 🍺 /usr/local/Cellar/postgresql/9.2.2: 2819 files, 39M, built in 68 seconds

Then I need to run this command:

initdb `brew --prefix`/var/postgres -E utf8

But this is the message I get: What should I do with this? Also running on OSX 10.8.2

The files belonging to this database system will be owned by user "JonyIve". This user must also own the server process.

The database cluster will be initialized with locale "en_US.UTF-8". The default text search configuration will be set to "english".

initdb: directory "/usr/local/var/postgres" exists but is not empty If you want to create a new database system, either remove or empty the directory "/usr/local/var/postgres" or run initdb with an argument other than "/usr/local/var/postgres".


回答1:


Assuming this is a new installation and not a re-installation I think solving your problem is as simple as:

initdb `brew --prefix`/var/postgres/data -E utf8

Typically the data directory is called "data' and is underneath the postgresql home directory. this allows for the possibility of sharing log file access and the like.




回答2:


If you know that you can do this without breaking anything, another option is always just to remove the directory as per the message

remove or empty the directory "/usr/local/var/postgres"

Via

rm -rf /usr/local/var/postgres



来源:https://stackoverflow.com/questions/14510237/postgresql-with-homebrew-on-mac

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!