摘要:
一、问题原因 密码过期。默认为180天。 二、解决办法 1)修改密码; 2)将过期时间设为无限制。 三、解决步骤 1)通过sqlplus / as sysdba 方式进去数据库更改; 2)查看数据库默认的密码管理方式有效期 SELECT * FROM dba_profiles WHERE profi 阅读全文
摘要:
解决办法 1、 修改用户密码 mysql> alter user 'root'@'localhost' identified by 'youpassword'; 或者 mysql> set password=password("youpassword"); 2、刷新权限 mysql> flush p 阅读全文