Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

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

avatar
New Contributor

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