Skip to content

No need for changing hosts file + expose ports on run command #23

Description

@jonatasbaldin

As specified in the HBase Book, since version hbase-0.96.0 there's no need to change the /etc/hosts file.

Also, to access the the container ports from your machine, you should expose the ports to the host. This can be done in two ways:

  • On the docker run command, such as (exposing just 16010):
    docker run --name=hbase-docker --rm -p 16010:16010 -d -v $PWD/data:/data dajobe/hbase

  • On the Dockerfile:
    EXPOSE 16010:16010

I got it working skipping the /etc/hosts configuration and running the command above.

What do you think?

Activity

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions