[PHP] ;;;;;;;;;;;;;;;;;;; ; About php.ini ; ;;;;;;;;;;;;;;;;;;; ; PHP's initialization file, generally called php.ini, is responsible for ; configuring many of the aspects of PHP's behavior. ; PHP attempts to find and load this configuration from a
新装MySQL后,首次执行 mysql -uroot -p 后会发现root密码不为空,要重置root密码请参考以下步骤。
编辑mysql配置文件my.ini(如果是my_default.ini请改名为my.ini),在[mysqld]这个条目下加入
skip-grant-tables
保存退出后重启mysql,点击“开始”->“运行”(快捷键Win+R)。
1.停止:输入 net stop mysql
2.启动:输入 net start mysql
这时候在cmd里面输入mysql
MySQL有时候忘记了root密码是一件伤感的事,这种情况下,如何重置root的密码呢?
找到并编辑mysql的my.ini配置文件,在mysqld节点中添加上skip-grant-table. 如下:
# These let you safely reset the lost root password.
skip-grant-table
保存好修改,重启mysql服务。
现在就能不需要root密码的情况下连接上数据库。然后执行下面的更新:
USE mysql;
UPDATE U