Ubuntu环境安装redash

    redash是一款开源的BI工具,提供了基于web的数据库查询和数据可视化功能。本文简单介绍一下在Ubuntu环境下使用docker安装redash的过程。

    首先从GitHub上clone代码,地址为:https://github.com/getredash/redash。可以使用命令:

 git clone https://github.com/getredash/redash.git

    安装后打开redash文件夹,修改修改docker-compose.production.yml文件,

    修改REDASH_COOKIE_SECRET:,改成自己的密码。

    将postgres:下边的

    volumes:

    - /opt/postgres-data:/var/lib/postgresql/data

   这两行注释去掉。

  编辑完成后保存退出,安装redash,运行

docker-compose -f docker-compose.production.yml run --rm server create_db

 安装完成后,启动docker,运行

docker-compose -f docker-compose.production.yml up

 以上就是安装redash的全过程,安装完成后访问ip地址即可访问redash。

你可能感兴趣的:(工具使用)