数据库
首页 > 数据库> > 为什么在Ubuntu 14.04上安装MySQL 5.6会失败?

为什么在Ubuntu 14.04上安装MySQL 5.6会失败?

作者:互联网

出于好奇,我想在Ubuntu 14.04上看看MySQL 5.6.基于this article,看起来安装应该简单明了.所以我启动了运行Ubuntu 14.04(64位)的AWS EC2微服务器,登录到我的pristine实例(通过PuTTY),并发出以下命令:

$sudo apt-get update
$sudo apt-get build-dep mysql-server-5.6
$sudo apt-get install mysql-server-5.6

(前两个命令是绝望的动作,因为单独运行apt-get install之前没有用过.但即使使用所有三个命令,安装步骤仍然无效.)

在我预期的基础上,根据上面引用的文章,从最终命令看到这个输出:

mysql start/running, process 2355  
Setting up libhtml-template-perl (2.95-1) ...  
Setting up mysql-common-5.6 (5.6.16-1~exp1) ...  
Processing triggers for libc-bin (2.19-0ubuntu6) ...  
Processing triggers for ureadahead (0.100.0-16) ...  

我得到了这个:

start: Job failed to start  
invoke-rc.d: initscript mysql, action "start" failed.  
dpkg: error processing package mysql-server-5.6 (--configure):  
 subprocess installed post-installation script returned error exit status 1  
Setting up libhtml-template-perl (2.95-1) ...  
Setting up mysql-common-5.6 (5.6.16-1~exp1) ...  
Processing triggers for libc-bin (2.19-0ubuntu6) ...  
Processing triggers for ureadahead (0.100.0-16) ...  
Errors were encountered while processing:  
 mysql-server-5.6  
E: Sub-process /usr/bin/dpkg returned an error code (1)

谁能看出出了什么问题?

解决方法:

您遇到的问题看起来与this bug report相同.启动失败似乎是因为默认的MySQL 5.6配置需要的内存比微实例中的内存要多.

该错误的解决方案似乎是执行以下操作之一:

>增加EC2实例中的内存量
>为MySQL的max_connections变量设置一个较小的值

标签:mysql,amazon-ec2,14-04
来源: https://codeday.me/bug/20190807/1610673.html