how to install mysql on mac os 6 10.6
I tried to install mysql on my laptop.
But everytime I got an error message: server's socket is not correctly configured
Apparently, my server didnt start automatically then my colleage found the solution on the Internet.
I was missing a specific file
[code]
cd ~/src
curl -O http://hivelogic.com/downloads/com.mysql.mysqld.plist
sudo mv ~/src/com.mysql.mysqld.plist /Library/LaunchDaemons
sudo chown root /Library/LaunchDaemons/com.mysql.mysqld.plist
[/code]
To start and stop the server manually:
[code]
sudo launchctl load -w /Library/LaunchDaemons/com.mysql.mysqld.plist => to start
sudo launchctl unload -w /Library/LaunchDaemons/com.mysql.mysqld.plist => to stop
[/code]
Source:
http://hivelogic.com/articles/compiling-mysql-on-snow-leopard
Commenter