> For the complete documentation index, see [llms.txt](https://nag-9-s.gitbook.io/hbase/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nag-9-s.gitbook.io/hbase/notes.md).

# Notes

**JPS is not showing HregionServer**

it might happen - `hbase.cluster.distributed`is not set or set to false in `hbase-site.xml`

hbase.cluster.distributed :\
The mode the cluster will be in. Possible values are false for standalone mode and true for distributed mode. If false, startup will run all HBase and ZooKeeper daemons together in the one JVM. Default: false

So if you set it to **true**y ou'll see the distinct master, region server and ZooKeeper processes.

```
<property>
    <name>hbase.cluster.distributed</name>
    <value>true</value>
  </property>
```
