Mac 环境下使用 homebrew 安装和彻底卸载 MySQL5.7

一、安装 MySQL5.7

在终端执行下列命令:

brew install [email protected]

使用 brew 安装好 MySQL 5.7 版本后,此时 MySQL root 用户的密码是空的。我们需要修改一下 MySQL root 用户的密码,步骤如下:

  1. 在终端执行下列命令:
    /usr/local/opt/[email protected]/bin/mysql.server start
    
    执行完该条命令后,MySQL 就被启动了起来
  2. 在终端执行下列命令:
    /usr/local/opt/[email protected]/bin/mysql_secure_installation
    
    这个命令是执行 mysql 提供的配置向导,启动这个脚本后,即可根据如下命令提示进行初始化设置(比如:重置 root 用户的密码)。
    NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
          SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!
    
    In order to log into MySQL to secure it, we'll need the current
    password for the root user.  If you've just installed MySQL, and
    you haven't set the root password yet, the password will be blank,
    so you should just press enter here.
    
    Enter current password for root (enter for none): //输入现行root密码,因为初次使用,所以直接回车
    OK, successfully used password, moving on...
    
    Setting the root password ensures that nobody can log into the MySQL
    root user without the proper authorisation.
    
    Set root password? [Y/n] Y //是否设置root密码
    New password:                   // 输入 root 新密码
    Re-enter new password:     // 重新输入 root 新密码
    Password updated successfully!
    Reloading privilege tables..
     ... Success!
    
    By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment.    
    Remove anonymous users? [Y/n] Y //是否删除匿名用户
     ... Success!
    
    Normally, root should only be allowed to connect from 'localhost'.This
    ensures that someone cannot guess at the root password from the network.
    
    Disallow root login remotely? [Y/n] Y //是否禁止远程登录
     ... Success!
    
    By default, MySQL comes with a database named 'test' that anyone can
    access.This is also intended only for testing, and should be removed
    before moving into a production environment.
    
    Remove test database and access to it? [Y/n] Y //删除测试数据库,并登录
     Dropping test database...
     ... Success!
     Removing privileges on test database...
     ... Success!
    
    Reloading the privilege tables will ensure that all changes made so far
    will take effect immediately.
    
    Reload privilege tables now? [Y/n] Y//重新载入权限表
     ... Success!
    
    All done!  If you've completed all of the above steps, your MySQL
    installation should now be secure.
    
    Thanks for using MySQL!
    

二、MySQL 彻底卸载

在终端依次执行下列命令:

rm -rf /usr/local/etc/my.cnf*

rm -rf /usr/local/Cellar/[email protected]/

rm -rf /System/Volumes/Data/usr/local/Cellar/[email protected]

rm -rf /System/Volumes/Data/usr/local/etc/my.cnf

rm -rf /System/Volumes/Data/usr/local/Cellar/[email protected]

brew uninstall [email protected]

rm -rf /usr/local/var/mysql

rm -rf /usr/local/mysql*

rm -rf /Library/LaunchDaemons/com.oracle

brew cleanup

rm -rf /Library/StartupItems/MySQLCOM

rm -rf /Library/PreferencePanes/My*

rm -rf ~/Library/PreferencePanes/My*

rm -rf /Library/Receipts/mysql*

rm -rf /Library/LaunchDaemons/com.oracle

rm -rf /var/db/receipts/com.mysql.*

三、可能遇到的问题

启动 MySQL 提示:The server quit without updating PID file(…) 失败

解决方案:https://blog.csdn.net/zalion/article/details/9274263

四、参考链接

https://www.jianshu.com/p/092691b617ac

你可能感兴趣的:(mysql)