通过cmd的命令窗口连接mysql,只需要在命令行中输入 mysql -uroot -p123456 .它会出现这样的提示:“mysql不是内部或外部命令”。解决办法是在环境变量的path路径下加入 C:Program FilesMySQLMySQL Server 5.6bin。
如下图:
将mysql配置到环境变量后,在cmd的命令窗口输入 “mysql -uroot -p123456”即可。如下图:
到此就可以通过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)
解决办法就是不要加分号。
时间: 2024-09-12 16:13:33