Magento2.x已经在默认安全性上有所加强了,会定期要求更换密码,且密码强度有一定要求。
在M2后台已经可以控制定期修改密码的功能,在
Admin: Stores -> Configuration -> Advanced -> Admin -> Security -> Password Lifetime(90 days by default)
当然也可以通过shell来关闭强制定制修改密码的功能
在网站根目录下执行:
php bin/magento config:set admin/security/password_lifetime 0 php bin/magento cache:clean
此配置数据也会写到文件app/etc/config.php中
修改
'password_lifetime' => '0',
之后刷新缓存