Download Mysql For Mac Os X Lion

Download Mysql For Mac Os X Lion

Download Mysql For Mac Os X Lion Rating: 5,8/10 4606 reviews

Posted on September 8th, 2011 phpguru This may not be obvious, but on the new Macs that ship with Lion, you can use the. It works perfectly on Lion, even though the MySQL site (still, at the time of this writing) says Mac OS X 10.6 Snow Leopard. You can use the Preference Pane to stop and start MySQL.

Now after MySQL 5.5 is running, strangely enough, you cannot simply launch terminal and type mysql -u rootBash will complain that it can’t find mysql. So we have to help it like so: • Use your favorite text editor to edit the file /Users/%yourname%/.bash_profile If this file doesn’t exist you can create it. • Add the following line to your.bash_profile export PATH=$PATH:/usr/local/mysql/bin and save the file. Be careful editing this file exactly as above. You can render terminal unable to find all your programs if you break your $PATH. • Quit and relaunch terminal, or type source ~/.bash_profile and hit return to reload the changes in your profile. • Check your $PATH by typing echo $PATH and pressing return.

Getting Started with 'Terminal' - MUST READ Before You Start Programming. Programmers use 'Terminal' to issue commands, instead of the graphical user interface - which is meant for common users. Android emulator for mac best

You should see something like this /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/mysql/bin • Now you should be able to run mysql -u root which means there is no root password by default! • Run this next, at the mysql prompt GRANT ALL ON *.* TO 'root'@'localhost' IDENTIFIED BY 'your_password_here' WITH GRANT OPTION;This is how to secure your root user login. Now, for PHP to use this connection I had to tweak my system as shown below: • Run phpinfo() and check out the path PHP is trying to use for mysql.sock.

On my new Mac Mini, it was /var/mysql/mysql.sock • From terminal, I did sudo find / -name mysql.sock -print • The critical line of output shows that MySQL 5.5 installs the sock to /private/tmp/mysql.sock • Now we need to create a symlink for PHP to be able to access the mysql.sock. Trouble is if you try it you’ll get an error because /var/mysql doesn’t exist. So next, do sudo mkdir /var/mysql • Finally, do this sudo ln -s /private/tmp/mysql.sock /var/mysql/mysql.sock Did that work for you?

I just verified the same issue exists on a brand new (Mountain) Lion install of Mac OS X 10.7.4 These two lines are the ticket: sudo mkdir /var/mysql sudo ln -s /private/tmp/mysql.sock /var/mysql/mysql.sock One other thing I’ve done on my new system is to symlink these: sudo /usr/local/mysql/support-files/mysql.server start sudo /usr/local/mysql/support-files/mysql.server stop like so: sudo ln -s /usr/local/mysql/support-files/mysql.server /usr/local/bin/mysql.server Thanks to Dan’s Drivelings for that tip.

  • понедельник 03 декабря
  • 38