remote.md 1.0 KB
Newer Older
M
初阶  
Mars Liu 已提交
1 2 3 4 5 6
# 登录远程服务器

Joe 需要登录团队的开发服务器上的goods数据库,这台服务器地址是 10.123.45.17 ,MySQL 端口是 3306 。用户名是 joe,口令是 ixhewui 。

那么 Joe 需要如何操作?

M
Mars Liu 已提交
7 8
<hr/>

M
Mars Liu 已提交
9
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)
F
feilong 已提交
10

M
Mars Liu 已提交
11 12
* `show databases` 列出所有数据库
* `show tables` 列出所有表
M
Mars Liu 已提交
13

M
初阶  
Mars Liu 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
## 答案

在终端输入

```shell
mysql -h 10.123.45.17 -p -ujoe goods
```
出现口令输入提示时输入口令。

## 选项

### A

在终端输入

```shell
mysql -h 10.123.45.17 -p3306 -ujoe goods
```
出现口令输入提示时输入口令。

### B

在终端输入

```shell
mysql -ujoe 10.123.45.17/goods
```
出现口令输入提示时输入口令。

### C

在终端输入

```shell
mysql mysql://joe@10.123.45.17/goods
```
出现口令输入提示时输入口令。

### D

在终端输入

```shell
mysql tcp://joe@10.123.45.17:3306/goods
```
出现口令输入提示时输入口令。