登录官网下载Fedora28的资源库并安装
sudo dnf install mysql-community-server
通过免密登录方式修改MySQLroot用户的密码
sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf # 在文件末尾加上一句:skip-grant-tables,然后保存退出
/etc/init.d/mysql start
mysql -u root -p # 提示输入密码直接回车免密码登录
ALTER USER 'root'@'localhost' IDENTIFIED BY 'password'; # 密码必须包含字母大小写,数字,特殊字符,否则会报错
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
- 只需执行刷新语句后再重复一遍更新密码的语句就不会再报错误
flush privileges;
- 删除上面在my.cnf文件中添加的一句内容
- 重启MySQL
/etc/init.d/mysql stop
/etc/nit.d/mysql start