반응형
timescale db 설치하기
설치
#brew 탭 추가하기
brew tap timescale/tap
#timescaledb 설치하기
brew install timescaledb
#설치 후 파일 경로 이동
/usr/local/bin/timescaledb_move.sh
#표준 설정 적용하기
timescaledb-tune
#PostgreSQL 재시작
brew services restart postgresql
#postgres 슈퍼유저 생성하기
createuser postgres -s
db 설정
#postgreSQL연결 (위에서 생성한 슈퍼유저 사용)
psql -U postgres -h localhost
#데이터베이스 생성
CREATE database tutorial;
#생성한 db에 연결
\c tutorial
#postgreSQL에 timescaledb EXTENSION 추가하기
CREATE EXTENSION IF NOT EXISTS timescaledb;
###db 접속하기
#db 접속하기
psql -U postgres -h localhost -d tutorial
###하이퍼 테이블
--테이블 생성
CREATE TABLE conditions (
time TIMESTAMPTZ NOT NULL,
location TEXT NOT NULL,
temperature DOUBLE PRECISION NULL
);
반응형
'기타 > 연구실 프로젝트' 카테고리의 다른 글
[시계열 db] 시계열데이터 db선택에 관련된 내용 정리 (0) | 2021.03.15 |
---|