Posted on 2009-02-25 20:44
ray' 阅读(4070)
评论(0) 编辑 收藏
换了个新硬盘,下了个xampp装上。不用apache、mysql、php单独安装配置了。MySQL的root密码为空,可以通过MYSQL_HOME/bin目录中的mysqladmin工具来修改:
mysqladmin -u root -p password YOUR_PASSWORD_HERE
然后会提示输入当前的root密码,直接回车就行了。
网上还有其他的方法,顺便转过来:
进入MySQL,然后使用下面的命令:
grant select on *.* to root@’%’ identified by “YOUR_PASSWORD_HERE”;
grant select on *.* to root@localhost identified by “YOUR_PASSWORD_HERE”;
Unix/Linux可以通过安全模式进入MySQL:
关闭MySQL:killall -TERM mysqld
安全模式进入:bin/safe_mysqld –skip-grant-tables &
更新root密码:
>use mysql
>update user set password=password(”new_pass”) where user=”root”;
>flush privileges;
重启MySQL服务
Apache中修改目录时,需要修改如下两个地方:
DocumentRoot “D:/xampp/htdocs”
<Directory “D:/xampp/htdocs”>
只修改一处会出现无访问权限的问题。