Access mysql remote database from command line(从命令行访问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远程数据库
基础教程推荐
- Sql Server 字符串到日期的转换 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01