You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@atlas.apache.org by "Richard Ding (JIRA)" <ji...@apache.org> on 2017/08/25 22:12:00 UTC

[jira] [Created] (ATLAS-2087) Atlas server always binds to address 0.0.0.0.

Richard Ding created ATLAS-2087:
-----------------------------------

             Summary: Atlas server always binds to address 0.0.0.0.
                 Key: ATLAS-2087
                 URL: https://issues.apache.org/jira/browse/ATLAS-2087
             Project: Atlas
          Issue Type: Bug
          Components:  atlas-core
    Affects Versions: 0.8-incubating
            Reporter: Richard Ding
            Assignee: Richard Ding
             Fix For: 0.9-incubating


Atlas server always bind to address "0.0.0.0":
{code}
connector.setHost("0.0.0.0");
{code}
But in many cases, user want to only run Atlas on a specified IP address (e.g. private network).

The existing property "_atlas.server.bind.address_" should be used:
{code}
final String addr = conf.get("atlas.server.bind.address", "0.0.0.0");
connector.setHost(addr);
{code}




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)