Replies: 10 comments 11 replies
-
Thank you! |
Beta Was this translation helpful? Give feedback.
-
Just to point out, that's what the It's currently designed for Ubuntu though, it won't (yet) work on RHEL/CentOS based systems. On that note, the version of it here was updated to work with CentOS 7 a few years ago. We could grab the updates from that too, and merge it into our own script. |
Beta Was this translation helpful? Give feedback.
-
Btw, if you run the database creation step before the
... that should avoid the |
Beta Was this translation helpful? Give feedback.
-
As a 2nd thought, the version of PostgreSQL you have listed is very old, and out of support:
It's safer to move to a newer PostgreSQL. I know for sure that version 13 of PostgreSQL works well in production with Redash, though both PostgreSQL 14 and 15 are likely fine as well. 😄 |
Beta Was this translation helpful? Give feedback.
-
Btw, displaying hard coded values here is kind of dangerous for anyone that wants to cut-n-paste the above:
For good security, those values are supposed to be generated by the user and kept secure in that file. 😄 |
Beta Was this translation helpful? Give feedback.
-
Can Redash be deployed with a MySQL 8.0 database backend? |
Beta Was this translation helpful? Give feedback.
-
sorry I have really been busy with 9-5 job, but we use it with postgres 14.6 (rds) and its working fine, we can update the docker file to use that if not latest or 15.x as the first post |
Beta Was this translation helpful? Give feedback.
-
@justinclift @gaecoli refer to: https://redash.dazdata.com/docs/download/opensource |
Beta Was this translation helpful? Give feedback.
-
I was facing issue while starting postgres:15.3-alpine in Ubuntu 20.04 in redash. I was getting the below error:
I fixed the issue by adding the following variables in the env file:
Please add this in the above documentation. |
Beta Was this translation helpful? Give feedback.
-
Previously it was a dql issue, now you can try again |
Beta Was this translation helpful? Give feedback.
-
Create two files, docker-compose.yml and env, respectively, under the same directory named redash.
docker-compose.yml:
env:
Execute the following command in the same directory to create the database:
In the directory to install Redash, execute the command :
docker compose up -d
Open http://127.0.0.1:5000 to access Redash.
If this is your first time installing, opening
http://127.0.0.1:5000
will display a prompt:Internal Server Error
The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.
This is because the Postgres database has not been created. Execute the following command in the same directory to create the database:
redash中文部署以及操作手册
操作手册: https://www.yuque.com/summer-l4v2u/pxnwqp/bqgt5n
部署文档:https://redash.dazdata.com/docs/opensource/opensouce_install/installer_introduce
Beta Was this translation helpful? Give feedback.
All reactions