时间:2021-07-01 10:21:17 帮助过:4人阅读
这个Yum库包含了MySQLServer,MySQL工作台管理工具以及ODBC驱动,现在可以通过下面的命令简单地安装MySQLServer:
[plain] view plain copy
至此我就可以使用Yum简单地管理MySQL更新,并能确保总是从官网软件库得到最新的发布版。
附录:
1、root password update failed
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement.
解决办法:
[plain] view plain copy
如此便可以重新更新root密码了!
2、[ERROR] InnoDB: Cannot create log files because data files are corrupt or the database was not shut down cleanly after creating the data files.
解决办法:进入你的mysql数据存放目录,删除ibdata1文件即可,例如在我的环境下
[plain] view plain copy
3、[ERROR] InnoDB: space header page consists of zero bytes in data file ./ibdata1
解决办法:修改配置文件my.cnf
根据个人环境空间大小和需求调节如下参数的值
[plain] view plain copy
添加一条:
[plain] view plain copy
4、ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: NO)
解决办法:Google上有很多,我遇到这个情况的时候只是使用/usr/bin/mysql_secure_installation 重新设置一次。
地址: http://blog.csdn.net/horace20/article/details/26516689
如何从MySQL官方Yum仓库安装MySQL5.6
标签: