반응형
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
- MAC
- react
- 개발
- build
- PYTHON
- TensorFlow
- picker
- unittest
- Chrome
- linux
- 맥
- MachineLearning
- webpack
- node
- Android
- VirtualBox
- qunit
- 센토스
- centos
- ReactNative
- localserver
- IOS
- androidstudio
- jest
- 네트워크
- avds
- xcode
- vsCode
- 리눅스
Archives
- Today
- Total
로메오의 블로그
[Postgresql] Docker에 Postgresql 설치하기 본문
반응형
Spring Boot / Oracle / Mybatis 차례
위 마지막 2개의 포스트를 먼저 참조하세요.
Postgresql 이미지 다운로드
$ docker pull postgres
$ docker run --name pgsql -d -p 5432:5432 -e POSTGRES_PASSWORD=postgrespassword postgres
$ docker exec -it pgsql bash
root@598a501b7d8e:/# psql -U postgres
psql (11.5 (Debian 11.5-1.pgdg90+1))
Type "help" for help.
postgres=# CREATE DATABASE firstdb;
CREATE DATABASE
postgres=# \q
DBeaver 설치
DBeaver를 다운로드해서 설치합니다.
Host: localhost
Port: 5432
Database: firstdb
User: postgres
Password: postgrespassword
위 정보를 입력하고 Test Connection 버튼을 누릅니다.
처음 접속하면 jdbc 설치화면이 표시됩니다.
Download해서 설치합니다.
Test Connection을 다시 눌러서 접속이 성공한것을 확인 합니다.
firstdb 데이터베이스에 정상적으로 접속되었습니다.
docker 종료하기
$ docker stop pgsql
컨테이너 삭제하기
$ docker rm pgsql
반응형
'Backend > Oracle & SQL' 카테고리의 다른 글
[SQLDeveloper] locale not recognized 오류 (0) | 2019.09.02 |
---|---|
[SQL] distinct 중복제거 예제 (1) | 2019.08.29 |
[Oracle] docker에 Oracle 11g 설치하기 (0) | 2019.08.25 |
[Docker] Mac에 docker 설치하기 (0) | 2019.08.25 |
[DBeaver] Oracle driver 설정 (0) | 2019.07.16 |
Comments