Getting error while creating a table in hbase

While trying to create a table using the below command, I am getting the below error. Kindly let me know where am I making the mistake. Thanks.

hbase(main):008:0> create ‘students_nikhil’,‘personal_details’,‘contact_details’,‘marks’

ERROR: Failed after attempts=351, exceptions:
Sun Feb 27 23:10:02 UTC 2022, null, java.net.SocketTimeoutException: callTimeout=60000, callDuration=68131: Connection refused row ‘students_nikhil,’ on table ‘hbase:meta’ at region=hbase:meta,1.1588230740, hostname=cxln2.c.thelab-240901.internal,16020,1644640296746, seqNum=0
Here is some help for this command:
Creates a table. Pass a table name, and a set of column family
specifications (at least one), and, optionally, table configuration.
Column specification can be a simple string (name), or a dictionary
(dictionaries are described below in main help output), necessarily
including NAME attribute.
Examples:
Create a table with namespace=ns1 and table qualifier=t1
hbase> create ‘ns1:t1’, {NAME => ‘f1’, VERSIONS => 5}
Create a table with namespace=default and table qualifier=t1
hbase> create ‘t1’, {NAME => ‘f1’}, {NAME => ‘f2’}, {NAME => ‘f3’}
hbase> # The above in shorthand would be the following:
hbase> create ‘t1’, ‘f1’, ‘f2’, ‘f3’
hbase> create ‘t1’, {NAME => ‘f1’, VERSIONS => 1, TTL => 2592000, BLOCKCACHE => true}
hbase> create ‘t1’, {NAME => ‘f1’, CONFIGURATION => {‘hbase.hstore.blockingStoreFiles’ => ‘10’}}

Table configuration options can be put at the end.
Examples:
hbase> create ‘ns1:t1’, ‘f1’, SPLITS => [‘10’, ‘20’, ‘30’, ‘40’]
hbase> create ‘t1’, ‘f1’, SPLITS => [‘10’, ‘20’, ‘30’, ‘40’]
hbase> create ‘t1’, ‘f1’, SPLITS_FILE => ‘splits.txt’, OWNER => ‘johndoe’
hbase> create ‘t1’, {NAME => ‘f1’, VERSIONS => 5}, METADATA => { ‘mykey’ => ‘myvalue’ }
hbase> # Optionally pre-split the table into NUMREGIONS, using
hbase> # SPLITALGO (“HexStringSplit”, “UniformSplit” or classname)
hbase> create ‘t1’, ‘f1’, {NUMREGIONS => 15, SPLITALGO => ‘HexStringSplit’}
hbase> create ‘t1’, ‘f1’, {NUMREGIONS => 15, SPLITALGO => ‘HexStringSplit’, REGION_REPLICATION => 2, CONFIGURATION => {‘hbase.hregion.scan.loadColumnFamiliesOnDemand’ => ‘true’}}
You can also keep around a reference to the created table:
hbase> t1 = create ‘t1’, ‘f1’
Which gives you a reference to the table named ‘t1’, on which you can then
call methods.