Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix markdown for some headers #17

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Built and tested with the latest version of [Docker for Mac](https://docs.docker

Trying this on Windows? Please [let me know](https://twitter.com/randerzander) how it works out.

##Project Goals:
## Project Goals:
1. Provide a reusable base with which to experiment with various Hadoop versions, its ecosystem, and its configs w/o VMs
2. Provide a pseudo-distributed Hadoop environment, because single node setups make bad assumptions about how software works in multi-node clusters.
3. Provide an excuse to learn & play with Docker
Expand All @@ -25,7 +25,7 @@ centos 6 cf2c3ece5e41 3 weeks ago
postgres latest 7ee9d2061970 6 weeks ago 275.3 MB
```

##Running HDP 2.5:
## Running HDP 2.5:
To run 3 containers (postgres, ambari-server, and a "single container HDP cluster"):
```
docker-compose -f examples/compose/single-container.yml up
Expand All @@ -50,7 +50,7 @@ sh submit-blueprint.sh single-container examples/blueprints/single-container.jso

There are additional blueprints for common test-beds in examples/blueprints, including Hive-LLAP and HBase-Phoenix.

##Notes:
## Notes:
1. Ambari, Hive, and Ranger dbs have been pre-created in the postgres database running at postgres.dev. To configure them in Ambari, set Postgres as the DB type and change the Database URL to point at postgres.dev (as depicted in screenshot below) and leave everything else as the default options. The password for the dbs are all "dev":
![hive-setup](/screenshots/hive-setup.png?raw=true)
2. The "node" container can be used for master, worker, or both types of services. The ambari-agent is configured to register with ambari-server.dev automatically, thus no SSH key setup is necessary. Use dn0.dev (and master0.dev if using multi-container):
Expand All @@ -59,7 +59,7 @@ There are additional blueprints for common test-beds in examples/blueprints, inc
4. All Ambari and HDP repositories are downloaded at buildtime. The versions and URLs are specified in .env in the project's root
5. Docker for Linux is more restrictive about "su" use, which Ambari relies on heavily, thus examples/compose/single-container.yml and multi-container.yml images are marked "privileged:true". Read up on the implications.

##Helpful Hints:
## Helpful Hints:
If you HDFS having issues starting up/not leaving SafeMode, it's probably because docker-compose is re-using containers from a previous run.

To start with fresh containers, before each run do:
Expand Down