2018年5月11日金曜日

VagrantでRedashとPercona Serverがインストールされた仮想マシン(Ubuntu16.04)を構築する

Redashはオープンソースのデータ可視化ツールです。

〇Redashの画面(クエリ作成画面)


〇構築方法
1.仮想マシン構築
以下のVagrantfileを使用して、RedashとPercona Serverがインストールされた仮想マシン(Ubuntu16.04)を構築する事ができます。

Vagrantfile
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/ubuntu-16.04"
  config.vm.hostname = "ub1604redashpercona"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "ub1604redashpercona"
     vbox.cpus = 4
     vbox.memory = 4096
     vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
  end
  # private network
config.vm.network "private_network", ip: "192.168.55.71", :netmask => "255.255.255.0"
  # bridge netwrok
config.vm.network "public_network", ip: "192.168.1.71", :netmask => "255.255.255.0"
  config.vm.provision "shell", inline: <<-SHELL
# install redash
wget https://raw.githubusercontent.com/getredash/redash/master/setup/ubuntu/bootstrap.sh
chmod +x bootstrap.sh
./bootstrap.sh


# install percona server
export DEBIAN_FRONTEND=noninteractive
echo "percona-server-server-5.7 percona-server-server/root_password password root" | sudo debconf-set-selections
echo "percona-server-server-5.7 percona-server-server/root_password_again password root" | sudo debconf-set-selections
wget https://repo.percona.com/apt/percona-release_0.1-4.$(lsb_release -sc)_all.deb
dpkg -i percona-release_0.1-4.$(lsb_release -sc)_all.deb
apt-get update
apt-get -y install percona-server-server-5.7
mysql -uroot -proot -e "CREATE DATABASE redash DEFAULT CHARACTER SET utf8mb4;"
mysql -uroot -proot -e "CREATE USER redash@localhost IDENTIFIED BY 'redash';"
mysql -uroot -proot -e "GRANT ALL PRIVILEGES ON redash.* TO 'redash'@'localhost';"
mysql -uroot -proot -e "FLUSH PRIVILEGES;"

mysql -uredash -predash -e "CREATE TABLE messages (message_id INTEGER, message VARCHAR(100));" redash
mysql -uredash -predash -e "INSERT INTO messages VALUES (1, 'Hello World!');" redash

SHELL
end

2.初期設定画面
ブラウザからhttp://192.168.55.71/にアクセスして、初期設定を行います。


3.データソースの登録
データソースの追加時に以下の設定を指定します。
Type : MySQL
Host : 127.0.0.1
User : redash
Password : redash
Database name : redash


0 件のコメント:

コメントを投稿