如何使用主机名和凭据连接到 MySQL 数据库并获取表?

发布于 2024-12-01 10:39:44 字数 198 浏览 0 评论 0原文

如果这不是发布此问题的正确位置,我真的很抱歉。如果不是,请标记该线程并将其关闭。 一位客户向我发送了一些需要编辑的文件并添加了一些功能。但他没有向我发送将其安装在我的服务器上所必需的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

写下不归期 2024-12-08 10:39:44

使用 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.

謌踐踏愛綪 2024-12-08 10:39:44

同意@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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文