码迷,mamicode.com
首页 > 数据库 > 详细

mac 下添加mysql开机启动

时间:2014-11-24 19:21:32      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   sp   文件   on   bs   ad   as   

1.添加文件
touch 
/Library/LaunchDaemons/com.mysql.mysql.plist
2.添加内容
<?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>KeepAlive</key>  
    <true/>  
    <key>Label</key>  
    <string>com.mysql.mysqld</string>  
    <key>ProgramArguments</key>  
    <array>  
    <string>/usr/local/mysql/bin/mysqld_safe</string>  
    <string>--user=root</string>  
    </array>    
  </dict>  
</plist>  

3.添加 后重启
sudo launchctl load -w /Library/LaunchDaemons/com.mysql.mysql.plist


mac 下添加mysql开机启动

标签:http   io   ar   sp   文件   on   bs   ad   as   

原文地址:http://my.oschina.net/u/923974/blog/348237

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!