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学习网!

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » mac如何重启postgresql