Updated Default port for Apache atlas - ja-guzzle/guzzle_docs GitHub Wiki
Default port of Atlas is 21000. To change this update at following places:
ATLAS_HOME in default guzzle marketplace vm is: /opt/apache-atlas-2.0.0 $ATLAS_HOME/conf/atlas-application.properties
## Server port configuration
atlas.server.http.port=21000 ## This property by default is commented
#atlas.server.https.port=21443
######### Security Properties #######
...
######### Server Properties #########
atlas.rest.address=http://localhost:21000
# If enabled and set to true, this will run setup steps when the server starts
#atlas.server.run.setup.on.start=false
Next is: $ATLAS_HOME/bin/atlas_config.py
ATLAS_HTTP_PORT="atlas.server.http.port"
ATLAS_HTTPS_PORT="atlas.server.https.port"
DEFAULT_ATLAS_HTTP_PORT="21000"
DEFAULT_ATLAS_HTTPS_PORT="21443"
ATLAS_ENABLE_TLS="atlas.enableTLS"
Also if using nginx , update /etc/nginx/sites-available/default
...
}
location /atlas/ {
proxy_pass http://localhost:21001;
}
}
...