Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

How can change the Cloudera Manager console to start on 8080?

avatar
New Member

Due to firewall restrictions in our data center, I cannot access the cloudera manager console running on port 7180. Is there any way that I can start the console on port 8080 instead?  

1 ACCEPTED SOLUTION

avatar

If you can get to the web UI, then you can modify this setting under Administration > Settings > Ports and Addresses.

 

If you can't, then run a curl command to update it via the API, while ssh'd in to the host (so your firewall doesn't get in the way):

curl -X PUT -u "admin:admin" -i \
-H "content-type:application/json" \
-d '{ "items": [
{
"name": "HTTP_PORT",
"value": 8080
}
] }' \
http://<cm_host>:7180/api/v3/cm/config

View solution in original post

1 REPLY 1

avatar

If you can get to the web UI, then you can modify this setting under Administration > Settings > Ports and Addresses.

 

If you can't, then run a curl command to update it via the API, while ssh'd in to the host (so your firewall doesn't get in the way):

curl -X PUT -u "admin:admin" -i \
-H "content-type:application/json" \
-d '{ "items": [
{
"name": "HTTP_PORT",
"value": 8080
}
] }' \
http://<cm_host>:7180/api/v3/cm/config