I've installed HBase 0.92.1-cdh4.0.1 on Ubuntu 12.04 in Pseudo-Distributed mode.
hbase-master, hbase-regionserver and zookeeper-server are running on this machine; the HDFS is running on another machine (property hbase.rootdir set accordingly).
Now I have a problem with the "hbase shell": whenever I submit a create table statement like
create 'tbl1', {NAME => 'd', COMPRESSION => 'GZ'}
the shell hangs (it does not return anything; waits forever) and I have to kill it with ctrl+c. However the command always gets executed and when I submit the "list" command in the "hbase shell", the table gets listed. Also the web-ui can be accessed through the default port 60010 and the created tables are listed under the user tables. I've already cleaned the hbase directory on the HDFS, cleaned the zookeeper logs, corrected the hosts file (changed 127.0.1.1 to 127.0.0.1). What could be the cause of this problem?