xshell搭建linux 远程连接方法参考:xshell连接VMware CentOS7
xshell连接linux后安装mysql:linux centos7 安装mysql
修改mysql 初始登录密码:
1.首先使用命令: vim /etc/my.cnf 修改mysql 配置信息
在[mysqld] 下面加上一句 skip -grant - tables
2.首先找到默认密码:grep ‘temporary password‘ /var/log/mysqld.log
3.然后登入:mysql -uroot -p(默认密码) ##切记-p与默认密码之间没有空格;
4.修改密码:alter user ‘root‘@‘localhost‘ identified by ‘新密码‘;
5.退出后重新登入
备注: 我当时修改密码的时候命名显示的错误,我还试了好几次,然后我重启之后用新密码竟然登进去了,我也很懵逼。记于2021.6.27