su - omm
source {Client installation directory}/bigdata_env
kinit Component user (You do not need to run the kinit command for normal clusters.)
clickhouse client --host IP address of the ClickHouse node --port 9000 -m --user clickhouse –password 'Password of the ClickHouse user'
View the password of the ClickHouse user.
Log in to FusionInsight Manager and choose Cluster > Services > ClickHouse. Click Instance and click any ClickHouseServer role name. Go to the Dashboard tab page of ClickHouseServer, click the users.xml file in Configuration File area, and view the password of the ClickHouse user.
Method 1
create role ck_role on cluster default_cluster;
GRANT SELECT ON default.* TO ck_role on cluster default_cluster;
CREATE USER user_01 on cluster default_cluster IDENTIFIED WITH PLAINTEXT_PASSWORD BY 'password';
select * from system.grants where role_name = 'ck_role';
Method 2
Creating a user with the read-only permission for a specified database