数据库 | postgresql 安装

当前项目是使用 django 框架搭建接口层的业务,数据库端使用了 postgresql,这里只是简单记录下自己的安装流程,因为开发机器使用的 mac,所以流程只是针对 mac

1 软件管理工具

这里我使用的 homebrew,这个工具就不多说了,没有用过的可以到这里 http://brew.sh/

2 安装步骤

执行下面命令即可

brew install postgresql

3 服务管理

这里使用了 lunchy, 这是一个 ruby gem,安装执行下面命令

gem install lunchy

服务管理,下面执行一次就可以了,如果不懂什么是 plist,自己自行脑补

ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents

服务的启动和关闭命令如下

lunchy start postgres    启动服务
lunchy stop postgres     终止服务
lunchy restart postgres  重启服务

当然你也可以使用 mac 自带的 launchctl (http://www.ttianjun.com/2016/03/19/mac-cron/)

    原文作者:kycool
    原文地址: https://segmentfault.com/a/1190000005068848
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞