Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created 09-22-2016 04:52 AM
I am trying to connect to Hbase REST API by using the below mention command:
curl -I -H "Accept: text/xml" http://myhost:8085/messagestable/schema
HTTP/1.1 404 Not Found
Its showing the 404 error.
Can anyone please suggest what are the possible reasons and resolution for this problem?
Created 09-22-2016 07:01 AM
It seems you are connecting to wrong port. as 8085 port is bound for web UI.
Try connecting to 8080 , if you have started rest server without specifying any port.
Created 09-22-2016 07:01 AM
It seems you are connecting to wrong port. as 8085 port is bound for web UI.
Try connecting to 8080 , if you have started rest server without specifying any port.
Created 10-04-2016 02:05 PM
Yeah it was a wrong port. Thanks for the resolution.