Home >Database >Mysql Tutorial >通过cmd命令连接mysql_MySQL

通过cmd命令连接mysql_MySQL

WBOY
WBOYOriginal
2016-05-27 14:12:271917browse

bitsCN.com

通过cmd的命令窗口连接mysql,只需要在命令行中输入 mysql -uroot -p123456 .它会出现这样的提示:“mysql不是内部或外部命令”。解决办法是在环境变量的path路径下加入 C:/Program Files/MySQL/MySQL Server 5.6/bin。

如下图:

/

将mysql配置到环境变量后,在cmd的命令窗口输入 “mysql -uroot -p123456”即可。如下图:

/

到此就可以通过cmd命令连接mysql数据库了。需要注意的是-u后面是连接数据库的用户名,没有空格。-p后面是连接密码,也没有空格。

命令为:mysql -uroot -p123456

如果你在命令后面加了分号会出现:

C:/Users/Administrator>mysql -uroot -p123456;
Warning: Using a password on the command line interface can be insecure.
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: Y
ES)

解决办法就是不要加分号。

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