Home > Database > Mysql Tutorial > WINDOWS主机mysql更改ROOT口令&建库&用户_MySQL

WINDOWS主机mysql更改ROOT口令&建库&用户_MySQL

WBOY
Release: 2016-06-01 13:47:26
Original
1124 people have browsed it

bitsCN.com

改ROOT口令
1.net stop mysql //停MYSQ服务
2.CD 到mysql bin目录下mysqld-nt --skip-grant-tables //启动MYSQL
3.DOS下mysql mysql //登录到mysql库
4.update user set password =PASSWORD("fuck") where user=root
5.FLUSH PRIVILEGES;

建库
1.create database xx;
2.FLUSH PRIVILEGES;

建用户
1.insert into mysql.user(Host,User,Password,ssl_cipher,x509_issuer,x509_subject) values("localhost","username",PASSWORD("password"),,,);
2.grant all privileges on xx.* to username@localhost identified by password
3.FLUSH PRIVILEGES;

bitsCN.com
Related labels:
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