mysql5.58 unstart server in mac os 10.6.5

后端 未结 3 432
隐瞒了意图╮
隐瞒了意图╮ 2020-12-15 01:44

MySQL 5.5.8 uninstall MAC OS 10.6.5,restart computer is message “/Library/StartupItems/MySQLCOM” has not been started because it does not have the proper security settings.

3条回答
  •  醉话见心
    2020-12-15 02:06

    I just installed MySQL 5.5.8 (mysql-5.5.8-osx10.6-x86_64.dmg) on Mac os X 10.6.5 and also had the problem that MySQL was not starting.

    After reading this post: http://forums.mysql.com/read.php?11,399397,399606#msg-399606

    Modify the mysql.server script file using the following command :

    sudo /Applications/TextEdit.app/Contents/MacOS/TextEdit /usr/local/mysql/support-files/mysql.server
    

    Locate the configuration defining the basedir and set the following:

    basedir=/usr/local/mysql 
    datadir=/usr/local/mysql/data 
    

    Save the file and start the mysql server in the system preferences / terminal

    This solved the problem.

    Hope this helps. Thanks to http://forums.mysql.com/profile.php?11,3773555 !

提交回复
热议问题