Mac安装postgresql

mac安装postgresql

  • 安装
    1
    brew install postgresql
  • 启动
    1
    2
    brew services start postgresql
    pg_ctl -D /usr/local/var/postgres start # 非后台运行
  • 初始化db
    1
    initdb /usr/local/var/postgres
  • 创建用户
    1
    createuser username -P
  • 创建表
    1
    createdb firstdb -O username  -E UTF8 -e
  • 链接db
    1
    psql -U username -d firstdb -h 127.0.0.1