从命令行访问mysql远程数据库

Access mysql remote database from command line(从命令行访问mysql远程数据库)

本文介绍了从命令行访问mysql远程数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一台带有 Rackspace 的服务器.我想从我的本地机器命令行访问数据库.

I have a server with Rackspace. I want to access the database from my local machine command line.

我尝试过:

mysql -u username -h my.application.com -ppassword

但它给出了一个错误:

错误 2003 (HY000):

ERROR 2003 (HY000):

无法连接到my.application.com"上的 MySQL 服务器 (10061)

Can't connect to MySQL server on 'my.application.com' (10061)

导致此错误的原因以及如何连接到远程数据库?

What causes this error and how can I connect to the remote database?

推荐答案

要直接登录远程 mysql 控制台,请使用以下命令:

To directly login to a remote mysql console, use the below command:

mysql -u {username} -p'{password}' \
    -h {remote server ip or name} -P {port} \
    -D {DB name}

例如

mysql -u root -p'root' \
        -h 127.0.0.1 -P 3306 \
        -D local

-p 后没有空格,如 文档

它会通过切换到提到的数据库直接带你到mysql控制台.

It will take you to the mysql console directly by switching to the mentioned database.

这篇关于从命令行访问mysql远程数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:从命令行访问mysql远程数据库

基础教程推荐