h2数据库服务器的安装,window和linux

windows安装h2

  • 注意:路径反斜杠
  • 在这里插入图片描述

linux安装h2

  • 启动命令
java -cp h2-2.1.214.jar org.h2.tools.Server -web -webAllowOthers -tcp -tcpPort 9092 -tcpAllowOthers

注:
org.h2.tools.Server  以服务器模式启动

-tcpAllowOthers     允许远程主机通过TCP方式访问

-webAllowOthers    允许远程机器通过浏览器访问

-webPort 8082     默认的访问端口(8082为未被占用的端口,如果此端口已经被其他端口占用,则改为其他端口)

-tcpPort 9001     启动TCP服务

-baseDir ~/db    设置数据库根目录

posted on 2022-11-25 05:55  小石头小祖宗  阅读(76)  评论(0编辑  收藏  举报  来源

导航