Home > Database > Mysql Tutorial > MySQL初始化步骤_MySQL

MySQL初始化步骤_MySQL

WBOY
Release: 2016-06-01 13:35:13
Original
2256 people have browsed it

bitsCN.com

MySQL初始化步骤

 

新手肯定在刚刚使用MySQL的时候,肯定像我会遇到PHP无法连接数据库的问题。现在就把所要做的整理一下,前提是你已经将mysql的工作目录加入到环境变量。

初始化步骤如下:

 

为root用户设置密码:

[sql] 

mysqladmin -u root password 'new-password'  

使用新密码替换命令行中的“new-password”。

删除匿名用户:

 

[sql] 

# mysql -u root -p  

mysql> use mysql  

mysql> delete from user where User = '';  

mysql> quit  

 

安装MySQL时,它将自动创建两个数据库。一个是mysql表,该表控制了服务器投入使用后的用户、主机和DB权限。另一个是测试数据库。MySQL的默认配置允许任何用户在不提供用户名和密码的前提下访问系统。

重新加载:

[sql] 

mysqladmin -u root -p reload  

至此,你的MySQL已经可以通过PHP进行Web访问了。

bitsCN.com
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template