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.