Apache Superset 이란?
- BI 툴이며, 오픈 소스이다. 유료 서비스인 Tableau보다 가볍다.
- Oracle, Mysql, Elastic Sesarch 등 여러 DB와 연동 가능하다.
Superset 설치
공식 설치 문서는 아래 페이지 참조.
https://superset.apache.org/docs/installation/installing-superset-using-docker-compose/
1. Git으로 Superset 소스를 로컬에 다운받는다.
git clone https://github.com/apache/superset.git
2. Docker를 이용해 Superset을 실행시킨다.
superset 소스를 다운 받은 곳에 들어가, docker-compose-non-dev.yml 설정 파일을 이용해 docker로 실행시킨다.
터미널에서는 아래와 같이 명령어를 실행시키면 된다.
cd superset -- git에서 superset 소스를 다운 받은 위치
docker-compose -f docker-compose-non-dev.yml pull
docker-compose -f docker-compose-non-dev.yml up
'docker-compose -f docker-compose-non-dev.yml up' 명령어를 실행시키면 Docker Desktop에서 아래와 같이 실행된 것을 확인할 수 있다.
초기 접속 정보는 아래와 같다.
Local Superset 접속 URL: http://localhost:8088/superset/welcome/
ID: admin
Password: admin
'기타 > Open Source' 카테고리의 다른 글
JXLS을 이용해 엑셀 파일 만들기 (0) | 2023.04.02 |
---|---|
엑셀 생성JAVA 라이브러리 JXLS, SXSSF 비교 (0) | 2023.04.02 |
Apache Superset에서 권한 설정 (0) | 2023.02.06 |
Apache Superset에서 Dataset을 이용해 Chart 생성 (0) | 2023.02.06 |
Apache Superset에서 MySQL DB 연동 및 Dataset 생성 (0) | 2023.02.06 |