官网搜索
MySQL官网
安装顺序
安装顺序
1.common
2.libs
3.client
4.server
免密登录后改密
当然有些人可能是root密码真忘记了,那样可以通过mysql免密码登陆
在其配置文件/etc/my.cnf
中加入skip-grant-tables=1
即可
重启mysql服务
systemctl restart mysqld
mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -ADatabase changedmysql> update user set authentication_string = password("123456") where user="root";
Query OK, 1 row affected, 1 warning (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 1mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
然后将/etc/my.cnf中的skip-grant-tables=1注释掉,重启mysql服务即可。
在此要注意的是,之前版本密码修改字段为password,在5.7版本之后字段为authentication_string
MySQL免密