在Mac上我们使用[homebrew]包管理工具(http://brew.sh/index_zh-cn.html)来安装和管理开发工具包,例如:mysql、php、redis。只需要一个命令

brew install mysql

它会将所有的包安装到/usr/local/Cellar/目录下,并将文件软连接到/usr/local/

安装完成后你需要到/usr/local/Cellar/mysql/5.6.26/bin下找到mysql来启动。但是如果关掉终端,mysql服务也会随之关闭,这样就始终占据了一个终端窗口。

Mac OS 的开机启动方式

launchd 是 Mac OS 下用于初始化系统环境的关键进程,它是内核装载成功之后在OS环境下启动的第一个进程。采用这种方式来配置自启动项很简单,只需要一个plist文件,该plist文件存在的目录有:

  • LaunchDaemons ~/Library/LaunchDaemons
    用户登陆前运行 plist(程序)
  • LaunchAgents ~/Library/LaunchAgents
    用户登录后运行相应的 plist(程序)

你需要.plist文件来指定需要开机启动的程序。
以下是开机启动的.plist配置文件的示例:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN""http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>org.mongodb.mongod</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/mongodb-2.0.3/bin/mongod</string>
<string>run</string>
<string>--config</string>
<string>/usr/local/mongodb-2.0.3/mongod.conf</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>WorkingDirectory</key>
<string>/usr/local/mongodb-2.0.3</string>
<key>StandardErrorPath</key>
<string>/usr/local/mongodb-2.0.3/log/error.log</string>
<key>StandardOutPath</key>
<string>/usr/local/mongodb-2.0.3/log/mongo.log</string>
</dict>
</plist>

如何编写.plist文件

brew安装的时候已经为你写好.plist文件。你只需要运行brew info mysql来查看帮助信息。

brew info mysql

<script type="text/javascript" src="https://asciinema.org/a/44624.js" id="asciicast-44624" async></script>
此时终端会显示如下信息:

==> Caveats
We've installed your MySQL database without a root password. To secure it run:
mysql_secure_installation To connect run:
mysql -uroot To have launchd start mysql at login:
ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents
Then to load mysql now:
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
Or, if you don't want/need launchctl, you can just run:
mysql.server start

按照提示,执行ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents将mysql加入到登陆启动列表

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

或者 立即启动mysql launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist

launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist

启动之后就可以关闭终端了,mysql会在后台运行。

文/lixiaohao(简书作者)
原文链接:http://www.jianshu.com/p/e73978416920

最新文章

  1. Deadlock Detecting--转
  2. POJ 1459:Power Network(最大流)
  3. java:同步和死锁
  4. Bootstrap&lt;基础十四&gt; 按钮下拉菜单
  5. hdu1542矩阵的并 线段树+扫描线
  6. smarty 模板 数字自动添加
  7. Maven实战二
  8. android 随手记 广播通知栏 二
  9. 如何使用cmd打开磁盘目录和文件
  10. UE4 创建自己的角色
  11. mysql大小写敏感(默认为1,不敏感)
  12. 关于概率dp的HINT
  13. python3- __slots__
  14. NumPy Ndarray 对象
  15. maven jetty debug 无法关联第三方类库解决办法
  16. cuda和gcc版本不兼容
  17. 【BZOJ1306】[CQOI2009]循环赛(搜索)
  18. VS Code 中文注释显示乱码
  19. elasticsearch 性能监控基础
  20. ibatis实现批处理

热门文章

  1. 通用性站点管理后台(Bee OPOA Platform)
  2. GNU 项目(开源社区的由来,背后的哲学)
  3. IOS学习之路十四(用TableView做的新闻客户端展示页面)
  4. jQuery全屏插件Textarea Fullscreen
  5. struts1 logic:iterate bean:write标签使用
  6. Qt Creator+MinGW+boost特殊函数的使用示例
  7. js区分汉字和字符,校验长度
  8. 消息队列NetMQ 原理分析1-Context和ZObject
  9. PHP中file_exists与is_file、is_dir的区别,以及执行效率的比较 转自#冰雪傲骨#
  10. Dos.ORM Select查询 自定义列