MySQL_安装

  1. 转载请标明出处 (博客园·joseph_ji https://www.cnblogs.com/josephji/p/10201174.html)
  2. 笔者简书对应文章

Ubuntu18.04.1 | MySQL8.0.13

MySQL APT Repository方式安装

官方文档地址

Adding the MySQL APT Repository
    sudo dpkg -i /PATH/mysql-apt-config_0.8.11-1_all.deb
  • 选择合适的版本和组件
  • 从MySQL APT Repository更新包信息
    sudo apt-get update
Installing MySQL with APT
    sudo apt-get install mysql-server
Starting and Stopping the MySQL Server
    sudo service mysql status
    sudo service mysql stop
    sudo service mysql start
安装其他组件

比如 MySQL Workbench

    sudo apt-get install mysql-workbench-community

猜你喜欢

转载自www.cnblogs.com/josephji/p/10201174.html