如何使用主机名和凭据连接到 MySQL 数据库并获取表?
如果这不是发布此问题的正确位置,我真的很抱歉。如果不是,请标记该线程并将其关闭。 一位客户向我发送了一些需要编辑的文件并添加了一些功能。但他没有向我发送将其安装在我的服务器上所必需的 MySQL 表。我有数据库凭据(如主机名、密码和用户名)。主机名类似于:abcd1234.secureserver.net。是否可以利用这些信息获取表结构?
谢谢和问候, 阿布舍克
I am really sorry if this is not the right place to post this question. If it is not, please mark the thread and close it.
A client sent me some files which needs to be edited and some functionalities added. But he didn't send me MySQL tables which is necessary in order to install it on my server. I have database credentials (like hostname, password and username). The host-name is something like: abcd1234.secureserver.net. Is it possible to get table structure using these information?
Thanks and regards,
Abhisek
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
mysqldump
和-H
参数指定主机名。如果您只需要表的结构而不是数据,也可以使用-d
。上面假设MySQL服务器正在监听公共IP。如果没有,那么您必须登录服务器并在本地运行
mysqldump
(不带-H
)。Use
mysqldump
with-H
parameter to specify the hostname. Also use-d
if you want only the structure of the tables and not the data.The above assumes that the MySQL server is listening on the public IP. If not, then you have to login to the server and run
mysqldump
locally without-H
.同意@nikhil500。
但在某些情况下,出于安全原因,MySQL的远程访问被关闭。
所以就试试吧
telnet abcd1234.secureserver.net 3306(如果需要,将 3306 更改为默认端口)
看看你是否可以成功连接到这个mysql而没有连接拒绝。
如果可以连接,则使用
mysqldump -H abcd1234.secureserver.net --default-character-set=utf8 --opt -u$DB_USER -p$DB_PASS $DB_NAME > $YOUR_FILE
其他情况,您应该要求您的客户端在他的服务器中执行 mysqldump 或请求服务器中的远程访问设置。
Agree to @nikhil500.
But in some cases, the remote access of MySQL is closed for security reason.
So just try
telnet abcd1234.secureserver.net 3306 (change 3306 to default port if needed)
see if you can success connect to this mysql without connection deny.
If you can connect it, then use
mysqldump -H abcd1234.secureserver.net --default-character-set=utf8 --opt -u$DB_USER -p$DB_PASS $DB_NAME > $YOUR_FILE
Other case, you should ask your client to execute mysqldump in his server or request an remote access setting in the server.