mac如何重启postgresql[mongodb教程]

python

Mac下安装postgresql

brew install postgresql -v

初始化配置

initdb /usr/local/var/postgres -E utf8

启动

pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start

关闭

pg_ctl -D /usr/local/var/postgres stop -s -m fast

创建用户,创建db

createuser <username> -P

createdb <dbname> -O <username> -E UTF8 -e

连接数据库

psql -U <username> -d <dbname> -h 127.0.0.1

list数据库

l 或不进入终端的情况下执行psql -l

更多学习内容,请点击Python学习网!

以上是 mac如何重启postgresql[mongodb教程] 的全部内容, 来源链接: utcz.com/z/526429.html

回到顶部