h2 & linux。如何启动数据库?

发布于 2024-10-09 19:55:55 字数 220 浏览 3 评论 0原文

抱歉,我对 linux ubuntu 很陌生。我有一个我制作的应用程序,它与 tomcat 一起运行并连接到 h2 数据库。在我的 Windows 笔记本电脑上一切正常。我现在将它转移到我的 Linux 计算机上以一直运行。但我在启动数据库时遇到问题。我已经从他们的网站下载了h2。它位于我的桌面上。

问题是。如何启动数据库。

我需要知道他们的任何其他命令来运行和操作它。

谢谢

sorry im rather new to linux ubuntu. i have an application that i made that runs with tomcat and connects to an h2 database. it all works fine on my windows laptop. im now moving it onto my linux computer to run all the time. but im having trouble with starting the database. i have downloaded h2 from their website. and its sitting on my desktop.

the question is. how to start the database.

and is their any other commands i need to know to run and operate it.

thankyous

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

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

发布评论

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

评论(3

过潦 2024-10-16 19:55:55

H2 数据库支持不同的模式:

  • 您可以使用 jdbc:h2:~/test 形式的数据库 URL 以嵌入模式使用 H2。这是最简单的情况。在这种情况下,数据库与应用程序运行在同一进程中,您不必仅为数据库启动单独的进程。

  • 您可以在服务器模式下使用 H2。在这种情况下,您需要启动一个单独的服务器进程。但对于你的情况来说,听起来你不需要这个,对吧?

  • H2还支持混合模式(半嵌入式/半服务器)和自动混合模式。

有关详细信息,请参阅有关连接模式的 H2 文档。

The H2 database supports different modes:

  • You can use H2 in embedded mode using a database URL of the form jdbc:h2:~/test. This is the easiest case. In that case the database is running within the same process as your application is running, and you don't have to start a separate process just for the database.

  • You can use H2 in server mode. In that case you need to start a separate server process. But for your case it doesn't sound like you need this, right?

  • H2 also supports mixed mode (half embedded / half server), and the automatic mixed mode.

For details, see the H2 documentation about Connection Modes.

梦在夏天 2024-10-16 19:55:55

在 h2 数据库的 bin 目录中打开终端并编写这些命令...

chmod +x h2.sh

./h2.sh

单击此处了解更多信息(类似线程)...

Open terminal in bin directory of h2 database and write these commands...

chmod +x h2.sh

./h2.sh

Click here for more information (similar thread)...

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