Install Redash on Linux #6602
saurabhhangotra
started this conversation in
General
Replies: 1 comment 2 replies
-
It seems you're using two different IPs for your machine. Have you tried the Did you open the ports to the EC2 machine to allow for outside access, or somehow add yourself to the VPC? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was using AMI for redash installation previously but now its not working, I tried to install using docker but its not working. Anyone can share me details how can i install in linux system
I have followed below steps:-
created .env and added keys
I used below docker image and ran "docker-compose run --rm server create_db" and
"docker-compose up -d "
version: '3' services: server: image: redash/redash:latest depends_on: - postgres ports: - "5000:5000" environment: REDASH_WEB_WORKERS: 4 scheduler: image: redash/redash:latest depends_on: - postgres environment: QUEUES: "celery" worker: image: redash/redash:latest depends_on: - postgres environment: QUEUES: "celery" redis: image: "redis:latest" postgres: image: postgres:9.6.2 environment: POSTGRES_PASSWORD: "xxx-xxx-xxx"
I ran successfully
But still i don't see anything
Beta Was this translation helpful? Give feedback.
All reactions