Skip to content

Instantly share code, notes, and snippets.

@asmaier
Created July 17, 2017 16:19
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save asmaier/16f42093349dc8b6922b86b94908bb14 to your computer and use it in GitHub Desktop.
Save asmaier/16f42093349dc8b6922b86b94908bb14 to your computer and use it in GitHub Desktop.
Start script for cloudera quickstart docker container (see https://dzone.com/articles/docker-how-to-get-started-with-cloudera)
#!/bin/bash
docker run --name cdh --hostname "quickstart.cloudera" --privileged=true -t -i -d \
-p 80:80 \
-p 7180:7180 \
-p 8888:8888 \
cloudera/quickstart /usr/bin/docker-quickstart
docker exec -ti cdh /home/cloudera/cloudera-manager --express
@tarunparmar
Copy link

The --express command is no longer valid as cloudera-manager is not present inside /home/cloudera.

I had to follow the steps listed here to get it:
https://www.cloudera.com/documentation/enterprise/5-4-x/topics/cm_ig_install_path_a.html#cmig_topic_6_5_1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment