MAC_mysql_install

作者: JoeyTsai | 来源:发表于2018-04-15 16:22 被阅读0次

准备工作:安装Homebrew:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

brew info mysql


brew info mysql

brew install mysql(安装mysql)


brew install mysql

brew tap homebrew/services(安装brew服务管理)


brew tap homebrew/services

brew services start mysql(启动mysql服务)


brew services start mysql

brew services list(查看服务列表)


brew services list

mysqladmin -u root password 'yourpassword'(设置root密码)


mysqladmin -u root password 'yourpassword'

mysql -u root -p (登录mysql)


mysql -u root -p

相关文章

  • MAC_mysql_install

    准备工作:安装Homebrew: brew info mysqlbrew info mysql brew inst...

网友评论

    本文标题:MAC_mysql_install

    本文链接:https://www.haomeiwen.com/subject/ecbdkftx.html