在局域网客户端测试MySQL数据库

发布于 2024-12-02 02:27:18 字数 354 浏览 0 评论 0原文

我正在尝试为我的家庭网络创建 MySQL DB 和 Java 客户端应用程序。除了 PHPMyAdmin 用于网站后端(也使用过 SQLite)之外,我还没有任何使用 MySQL 的经验。我已经从 MySQL 网站下载了完整的 MySQL 安装和测试数据库。在服务器计算机上,我以 root 身份成功连接到数据库。这不是一项艰巨的任务。

现在我想从我的客户端 PC 连接到数据库,只是为了检查是否可以。最终我将使用 JDBC 驱动程序从 Java 客户端应用程序进行连接,但在此之前我只想检查是否可以连接。

我该怎么做?我应该只将 MySQL 命令行程序安装到客户端 PC 上吗?

额外信息:忘记添加,我在所有计算机上都使用 Windows 7。

I am attempting to create a MySQL DB and Java client app for my home network. I haven't really had any experience with MySQL other than PHPMyAdmin for a website backend (also have used SQLite). I have downloaded the full MySQL installation and a test DB from the MySQL website. On the server machine I successfully connected to the DB as root. Not a difficult task.

Now I want to connect to the DB from my client PC, just to check I can. Eventually I will use the JDBC driver to connect from my Java client app, but before that I just want to check I can connect.

How should I do this? SHould I just install the MySQL command line program onto the client PC?

EXTRA INFO: forgot to add, I'm using Windows 7 on all my machines.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

乖乖哒 2024-12-09 02:27:18

是的,您可以安装 MySQL 来获取 MySQL 命令行程序并与其连接,但您也可以使用另一个 MySQL 客户端工具,例如 PHPMyAdmin,dbForge Studio for MySQL 或另一个。

要从远程主机连接,您应该为其创建特殊帐户,例如 - 'user_name'@'your_host_name'。在此处查找更多信息 -

指定帐户名称

帐户名和密码

Yes, you could install the MySQL to get MySQL command line program and connect with it, but also you can use another MySQL client tool like PHPMyAdmin, dbForge Studio for MySQL or another one.

To connect from remote host you should create special accout for it, e.g. - 'user_name'@'your_host_name'. Find more information here -

Specifying Account Names

Account Names and Passwords

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