[步骤] MariaDB & MySQL 用户密码的修改

步骤一:查看 MariaDB & MySQL 中目前所有的用户、用户所属的服务器、密码的过期时间、最后修改密码的时间和密码的有效期

mysql > select user,host,password_expired,password_last_changed,password_lifetime from mysql.user;

步骤二:创建要修改密码的用户

mysql > create user mingyuzhu@localhost identified by 'eternalcenter';

(补充:这里以创建名为 mingyuzhu 所属服务器是 localhost 密码是 eternalcenter 的用户为例)

步骤三:修改 MariaDB & MySQL 用户的密码

mysql > alter user mingyuzhu@localhost identified by 'neweternalcenter';

(补充:这里以将名为 mingyuzhu 所属服务器是 localhost 用户的密码修改为 neweternalcenter 为例)

步骤四:刷新 MariaDB & MySQL 的用户列表使刚刚修改的密码生效

mysql > flush privileges;

[排错] 解决 Linux 创建 VM 时报错 ‘blk_cloned_rq_check_limits’

报错代码:

kernel: blk_cloned_rq_check_limits: over max size limit. (65535 > 0)

分析:

SAN 存储设备需要 ’68 Support Page Reclamation for Linux bit’ 功能开启后才能实现精简配置

解决方法:

在 SAN 存储设备上开启 ’68 Support Page Reclamation for Linux bit’ 功能后执行以下命令:

$ for i in /sys/block/sd*; do echo 1 > $i/device/rescan; done
$ multipath -r
$ multipath -ll

参考文献:

https://access.redhat.com/solutions/5619941