Several pits on Mac OS X Yosemite installed on MYSQL 5.6.26

Source: Internet
Author: User
Tags mysql command line

Pit 1, default port not 3306

A "MYSQL" control Panel will be added to "System Preferences" after installation with MYSQL-5.6.26-OSX10.9-X86_64.DMG

But the port that started MySQL server might be 3307 not the default 3306, if you want to use 3306 you need to modify the configuration file/library/launchdaemons/com.oracle.oss.mysql.mysqld.plist

<string>--port=3307</string>

Switch

<string>--port=3306</string>


Pit 2, Default user root No password, client cannot connect MySQL
shell> mysql-u root mysqlmysql> UPDATE mysql.user SET Password = Password (' newpwd ') WHERE user = ' root ';mysql> F LUSH privileges;


Pit 3, the client may still not be connected

Need to configure TCP/IP connection pipeline

sudo mkdir/var/mysqlsudo ln-s/tmp/mysql.sock/var/mysql/mysql.sock


TIPS

To facilitate the execution of MySQL command line, you also need to configure the environment variables, modify the Bash_profile

Nano ~/.bash_profile

Export path= "/usr/local/mysql/bin: $PATH"

SOURCE ~/.bash_profile


Several pits on Mac OS X Yosemite installed on MYSQL 5.6.26

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.