标签:important flush HERE 程序 http 没有 因此 phpwind web
官方网站:http://www.upupw.net
Win10环境,下载了"UPUPW_AP7.2_64.7z"试用,解压后,执行upupw.exe就可以了。
想修改数据库密码,发现系统和帮助文件提供的方法可以改,但都不生效。查了好久才发现,这个版本的数据库密码并没有存放在 password 而是 authentication_string,因此,可以通过以下方法修改。
1、启动upupw
2、打开cmd窗口,进入到数据库目录/UPUPW/MariaDB/bin。
3、执行命令:mysql -u root -p;
4、用系统提供的密码登录,默认的是:DRsXT5ZJ6Oi55LPQ
5、进入mysql管理界面后,执行命令:
update user set authentication_string=password("新密码") where user=‘root‘;
提示:Query OK, 1 row affected (0.000 sec)
Rows matched: 1 Changed: 1 Warnings: 0
6、执行命令:
flush privileges;
7、执行命令:
quit
修改完毕,可以用新密码登陆了。
标签:important flush HERE 程序 http 没有 因此 phpwind web
原文地址:https://www.cnblogs.com/homecat805/p/11044588.html