Mysql 5.6 在 Mac OS 中不工作

Mysql 5.6 is not working in Mac OS

Mysql 5.6 不断在 Mac OSX.

中产生问题

它经常断开服务器。

并抛出某些错误,例如 /tmp/mysql.sock 不存在

与通过 DMG 安装的 Mysql 5.6.14 相同:$ mysql ERROR 2013 (HY000): Lost connection to MySQL server at 'sending authentication information', system error: 32

authentication packet lost 个错误。

我每次都必须终止进程 ID,然后不得不 运行 mysql -u root -p 重新开始。

但同样的事情一再发生。

即使任何网站的 none 在线答案不起作用,也不要担心。试试这个,它对我和我所有的队友都很有效。

1).在 mac.

中安装原子

2). 运行sudo atom /Library/LaunchDaemons/com.oracle.oss.mysql.mysqld.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>Disabled</key>
    <false/>
    <key>ExitTimeOut</key>
    <integer>600</integer>
    <key>GroupName</key>
    <string>_mysql</string>
    <key>KeepAlive</key>
    <true/>
    <key>Label</key>
    <string>com.oracle.oss.mysql.mysqld</string>
    <key>LaunchOnlyOnce</key>
    <false/>
    <key>ProcessType</key>
    <string>Interactive</string>
    <key>Program</key>
    <string>/usr/local/mysql/bin/mysqld</string>
    <key>ProgramArguments</key>
    <array>
        <string>/usr/local/mysql/bin/mysqld</string>
        <string>--user=_mysql</string>
        <string>--basedir=/usr/local/mysql</string>
        <string>--datadir=/usr/local/mysql/data</string>
        <string>--plugin-dir=/usr/local/mysql/lib/plugin</string>
        <string>--log-error=/usr/local/mysql/data/mysqld.local.err</string>
        <string>--pid-file=/usr/local/mysql/data/mysqld.local.pid</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    <key>SessionCreate</key>
    <true/>
    <key>UserName</key>
    <string>_mysql</string>
    <key>WorkingDirectory</key>
    <string>/usr/local/mysql</string>
</dict>
</plist>

然后在</array>

上方添加这两行
<string>--port=3306</string>
<string>--innodb_file_per_table=0</string>

然后重新启动 mysql 服务器。就是这样。