mysql 常用命令

安装mysql

brew install mysql
brew install mysql@版本号
mysql --version 查看版本号

卸载mysql

brew uninstall mysql

mysql操作

  • 启动mysql

    sudo mysql.server start

  • 关闭mysql

    sudo mysql.server stop

  • 查看mysql位置

    brew list mysql

修改密码

  1. brew list mysql 查看mysql的安装位置
  2. mysql.server stop 关闭mysql服务
  3. 执行安全模式 mysqld_safe --skip-grant-tables
  4. 打开新的终端窗口,并运行以下命令来连接到 mysql 服务器 mysql -u root
  5. 连接成功后,将出现 MySQL 提示符。运行以下命令来更新 root 用户的密码
    FLUSH PRIVILEGES;
    ALTER USER 'root'@'localhost' IDENTIFIED BY '新密码';
    
  6. 更改密码后,运行以下命令来刷新权限并退出 mysql
    FLUSH PRIVILEGES;
    exit;
    
  7. 重启mysql mysql.server start

results matching ""

    No results matching ""

    results matching ""

      No results matching ""