Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Eclipse
- maVen
- netsh
- Mac
- 네트워크
- 단축키
- Quartz
- port
- vscode
- profile
- find
- xargs
- GIT
- Windows 10
- context
- bash
- ssh
- web.xml
- tomcat
- lsof
- plugin
- Windows
- VirtualBox
- IntelliJ
- Source
- 줄바꿈 문자
- import
- JavaScript
- resource
- grep
Archives
- Today
- Total
develog
[mac] H2 Database 설치 본문
H2 다운로드
H2 실행
- 다운로드한 파일 압축을 풀고 h2를 실행한다
$ cd ~/Downloads/h2/bin
$ chmod +x h2.sh
$ ./h2.sh
database 파일 생성 (H2 Console)
- 파일 모드로 연결해서 database 파일을 먼저 만든다
jdbc:h2:~/test
- database 파일이 생성되었는지 확인한다
$ ll ~/test.mv.db
- tcp 모드로 변경해서 다시 접속한다
jdbc:h2:tcp://localhost/~/test
database 연결
# password 는 없음
driverClassName=org.h2.Driver
url=jdbc:h2:tcp://localhost/~/test
username=sa
password=
H2 설정 파일
~/.h2.server.properties
DBeaver 에서 H2 접속
jdbc:h2:tcp://localhost:9092/~/test
'OS & Shell > Mac' 카테고리의 다른 글
[mac] Homebrew (0) | 2020.08.12 |
---|---|
[mac] git 계정 정보 설정 (0) | 2020.02.14 |
[mac] losf, find by port (0) | 2020.01.21 |
[intellij] 단축키 mac (0) | 2019.12.06 |
[SQL Developer] Unable to create an instance of the Java Virtual Machine Located at path ... jvm.dll (0) | 2013.03.19 |
Comments