Skip to content

Instantly share code, notes, and snippets.

@naz19
Created July 27, 2017 11:56
Show Gist options
  • Save naz19/77f2d2a15c8162c8ab4249bd49f83a5a to your computer and use it in GitHub Desktop.
Save naz19/77f2d2a15c8162c8ab4249bd49f83a5a to your computer and use it in GitHub Desktop.
HDP v2.5 Sandbox Installation Guide

HDP v2.5 Sandbox Installation Guide

  1. Download docker image using this URL

  2. Load the download file as an image in docker

    $ sudo docker load -i /path/to/downloaded/file
    
  3. Download the startup script from here

  4. Run the startup script to start the docker container

  5. ssh into the sandbox as root user

    $ ssh root@localhost -p 2222
    
  6. If postgres is not running and if there is an error in pgstartup.log regarding shared memory segment then do the following

    $ sysctl -w kernel.shmmax=37879808
    $ service postgresql restart
    
  7. Setup Ambari admin Password Manually

    # updates password
    $ ambari-admin-password-reset
    # If Ambari doesn't restart automatically, restart ambari service
    $ ambari-agent restart
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment