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

2021-11-20 00:00:00 shell mysql mysql-error-2003

我有一台带有 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.

相关文章