Home > Database > Mysql Tutorial > 远程登陆MySQL 的方法(图文详解)

远程登陆MySQL 的方法(图文详解)

WBOY
Release: 2018-10-27 17:12:01
forward
2113 people have browsed it

这篇文章主要介绍了远程登陆MySQL 的方法(图文详解),有一定的参考价值,感兴趣的小伙伴可以参考一下。

1、MySQL自带工具的存放路径:

D:\Program Files\MySQL\MySQL Server 5.6\bin 

为了方便使用,我们可以将以上路径添加到系统的环境变量path中

如果你不放,则有可能在CMD中打开不了相应的程序。

//截图如下:


 


2.本地登录MySQL

命令:mysql -u root -p   //root是用户名,输入这条命令按回车键后系统会提示你输入密码

   //然后你输入正确的密码,再按一下回车键就可以登录MySQL数据库了。

!截图如下




3.指定端口号登录MySQL数据库

将以上命令:mysql -u root -p改为 mysql -u root -p  -P 3306  即可,注意指定端口的字母P为大写,

而标识密码的p为小写。MySQL默认端口号为3306

!截图如下



4.指定IP地址和端口号登录MySQL数据库

命令格式为:mysql -h ip -u root -p -P 3306例如:mysql -h 127.0.0.1 -u root -p -P 3306

!截图如下


【相关教程推荐】

1. mysql数据库图文教程 

2. MySQL 5.1参考手册下载 

3. bootstrap教程 

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