Amazon Linux AMI和Percona服务器5.6似乎没有开箱即用的兼容性。成功安装后,MySQL无法启动。
在Perconas文档中,它确实表示支持它。
了解以下内容的步骤:
yum install http://www.percona.com/downloads/percona-release/percona-release-0.0-1.x86_64.rpm
yum install Percona-Server-server-56
其中也安装了客户端+共享56个库。
更精确的日志。
[root@* ec2-user]# mysql
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
[root@* ec2-user]# service mysql restart
ERROR! MySQL (Percona Server) PID file could not be found!
Starting MySQL (Percona Server).......... ERROR! The server quit without updating PID file (/var/lib/mysql/ip-172-30-0-92.pid).
答案 0 :(得分:1)
在最新的Amazon Linux AMI上,我能够在运行这些命令后启动服务器:
yum install 'perl(Data::Dumper)'
yum reinstall Percona-Server-server-56
如果未安装perl-Data-Dumper软件包,则mysql_install_db无法运行并执行初始设置。
Percona-Server-server-56软件包应声明对perl-Data-Dumper的依赖,但您可以先安装它来解决该错误(并避免重新安装)。