赞
踩
先使用 rpm -qa| grep mariadb 查询mariadb
再使用 yum -y remove 软件包名 进行删除
如之前已经安装过mysql :
使用 rpm -qa | grep mysql 进行查询 ,再使用yum -y remove 软件包名依次删除即可
先使用 wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm 获取
再使用yum -y install mysql57-community-release-el7-10.noarch.rpm 下载
yum -y install mysql-community-server 安装mysql服务
启动mysql : systemctl start mysqld
安装完后密码为随机密码,需要重置密码
先使用 grep "password" /var/log/mysqld.log 获取密码
登录进入mysql : mysql -u root -p
重置密码: alter user 'root'@'localhost' identified by 'Acofkings666.';
对于自己虚拟机上的密码没必要这么复杂,可以通过修改配置文件设置简单密码
vim /etc/my.cnf 前往配置文件修改
重启mysql服务
systemctl restart mysqld
重新进入mysql修改密码即可
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。