497
个编辑
更改
→MySQL的安装
# 查看数据库是否正常:mysql> show databases;
# 修改root密码:mysql> set password for 'root'@'localhost' =password('password');
=mysql-community-server安装报错的处理=
* 显示:错误:软件包:akonadi-mysql-1.9.2-4.el7.x86_64
<pre>
yum -y remove mariadb-libs
yum install mysql-community-server
</pre>
* 上述命令就是移除mariadb-libs,继而重新安装。
=MySQL配置=