How to run Cloudera Director on your macOS/Windows 10
Cloudera Director is a provisioning tool for CDH and Cloudera Enterprise. We can launch cluster with Web GUI or CLI tool. Using Cloudera Director CLI tool, you can manage your cluster with configuration file, that enables you to manage configurations with git. In this article, I will introduce how to install Cloudera Director into your local macOS or Windows 10.
For usage of Cloudera Director, see also the document.
Cloudera Director 2.5.x Documentation
Cloudera Director 2.5.x Documentationwww.cloudera.com
Install Cloudera Director on you macOS with homebrew
If you’re homebrew user, you can install Cloudera Director easily.
chezou/homebrew-cloudera
_homebrew-cloudera - Homebrew Formulas for cloudera tools_github.com
$ brew tap chezou/cloudera
$ brew install cloudera-director-server
Then, you can launch/terminate Cloudera Director as follows:
# Start Cloudera Director Server background
$ cloudera-director-server-start
# After launching director server, you can open with http://locahost:7189/
# Stop Cloudera Director Server background
$ cloudera-director-server-stop
Install Cloudera Director on you Windows 10
If you are Windows 10 user, you can install Ubuntu as the Linux Subsystem.
Launch bash on windows, then run as follows:
Make sure to get not IP address of Windows but Ubuntu’s one.
Use Docker image
If you don’t want to install your machine directly, you can use Docker image of Cloudera Director.
tsuyo/cloudera-boot
_cloudera-boot - Cloudera Director Utilities_github.com
After installation of Docker, run following commands then your Director will launch.
$ git clone https://github.com/tsuyo/cloudera-boot$ cd cloudera-boot$ . bin/cloudera-boot.sh # load several functions/aliases$ cb-build # may take a while# set you secrets
You can launch a Director server or use client as well. To get further information, see also README.md.