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

通过cmd命令连接mysql

WBOY
Release: 2016-06-07 16:18:54
Original
1367 people have browsed it

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

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

  如下图:

通过cmd命令连接mysql   三联

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

通过cmd命令连接mysql

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

  命令为:mysql -uroot -p123456

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

  C:UsersAdministrator>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)

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

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