본문 바로가기
Data/Data Engineering

[Superset] valueerror invalid decryption key 오류

by 투말치 2023. 12. 2.
반응형

오류 발생

Docker 위에서 Superset을 설치한 후에 데이터베이스를 연결하려는 과정에서 자꾸 invalid decryption key 오류가 발생했다.

 

 

해결 방법

 

docker-compose down -v

 

해당 명령어를 통해 실행 중인 컨테이너와 관련 리소스를 제거했다

 

docker-compose -f docker-compose-non-dev.yml up

 

그리고 다시 컨테이너를 실행한다.

 

superset 연결이 잘 되었다면 기본적으로 examples 데이터베이스가 존재해야 한다.

잘 연결된 것을 확인할 수 있다.

 

https://stackoverflow.com/questions/68060234/apache-superset-error-when-installing-locally-using-docker-compose

 

Apache Superset error when installing locally using Docker Compose

I'm trying to install to my Ubuntu 20.04 local machine using docker-compose. When I run sudo docker-compose -f docker-compose-non-dev.yml up, I got several errors and the process keep giving errors...

stackoverflow.com

 

반응형