MySQL with MAMP does not work with OSX Yosemite 10.10

前端 未结 15 807
灰色年华
灰色年华 2020-12-28 16:15

[EDIT] The last version of MAMP with the last version of OSX Yosemite works fine.

I installed the beta of Yosemite two month ago, no problem with MAMP. With the last

15条回答
  •  情话喂你
    2020-12-28 17:05

    This solved my problem with mysqld and apache on XAMPP:

    As you can see, Yosemite DP 5 changes a few things in its library. Probably if you’re running XAMPP server on DP5 it won’t start mysqld (MySQL database daemon).

    What you should do?.

    STEP 1 . Download Homebrew. Open your terminal and then type: . . . ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

    STEP 2: . Download LIBICONV, you have to type the following lines at terminal: . . . brew install libiconv . . . brew link libiconv —force

    STEP 3 . Download SQLITE3, you have to type the following lines at terminal: . . . brew install sqlite3 . . . brew link sqlite3 —force

    STEP 4 . Go to Applications/XAMPP/xamppfiles/lib and then delete the following files (remember to empty your trash). . . . libsqlite3.dylib (it is an ALIAS) . . . libsqlite3.0.8.6.dylib . . . libiconv.2.dylib . . . libiconv (it is an ALIAS).

    STEP 5 .Restart you “manager-osx.app” then try to turn on your mysql database.

    Via: http://exequielplaza.com/funstuff/xampp-dp5-yosemite-mysqlfix.html

提交回复
热议问题