美文网首页
Lesson-41 PostgreSQL新手入门

Lesson-41 PostgreSQL新手入门

作者: 阿瑟李 | 来源:发表于2016-02-17 14:55 被阅读149次

    MAC 安装 postgresql

    brew install postgresql

    创建postgreSql数据库:

    initdb /usr/local/var/postgres

    启动服务:

    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

    自动启动服务:

    mkdir -p ~/Library/LaunchAgents
    cp /usr/local/Cellar/postgresql/9.2.4/homebrew.mxcl.postgresql.plist ~/Library/LaunchAgents/launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
    

    删除自动启动服务:

    launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist

    相关文章

      网友评论

          本文标题:Lesson-41 PostgreSQL新手入门

          本文链接:https://www.haomeiwen.com/subject/csnpkttx.html