ubuntu 16.04 上未安装 mysqld

ubuntu 16.04 上未安装 mysqld

环境:

  • mysql-server-core-5.7
  • myssql-client-5.7
  • mysql-workbench 6.3.6+dfsg-0ubuntu1
  • Ubuntu 16.04.1
  • Linux4.4.0-64-generic #85-Ubuntu SMP

我发现/etc/mysql/mysql-fabric-doctrine-1.4.0.zip/etc/mysql/fabric.cfg,并且没有其他文件包含 mysql在文件名中,也没有在rc*.d/etc

重复三次apt-get removeapt-get install结果相同。

是吗:

  • 安装过程中有错误?
  • 32位应用程序和64位系统之间存在问题?
  • 另一个问题?

答案1

digitalocean 页面nixCraft 页面解释如何在 Ubuntu 16.04 上安装 MySql 5.7

步骤如下:

  1. 更新系统

    sudo apt update
    sudo apt upgrade
    
  2. 安装 mysql 客户端和服务器

    sudo apt install mysql-server mysql-client
    

    注意:需要输入 MySQL 根用户的密码:

  3. 运行 mysql_secure_installation 来保护你的安装

    sudo mysql_secure_installation
    
  4. 测试 MySql

    systemctl status mysql.service
    

你应该看到它正在运行

请查看提供的链接中的完整说明。

相关内容