Dynamic Data Masking
- Dynamic Data Masking 9.9
- All Products
server zookeeper create -path /DDM
#!/bin/sh cd `dirname $0` . ./server zookeeper connect -url 'zookeeper_ensemble' . ./server zookeeper create -type EPHEMERAL -path /<DDM cluster>/<name of ephemeral node> -data hive.server2.instance.uri=<ddmhost1>:10001;hive.server2.authentication=KERBEROS;hive.server2.transport.mode=binary;hive.server2.thrift.sasl.qop=auth;hive.server2.thrift.bind.host=<ddmhost1>;hive.server2.thrift.port=<DDM Hive service port>;hive.server2.use.SSL=false;hive.server2.authentication.kerberos.principal=<hive service principal for ddmhost1>
@echo off REM ********************************************* REM Start DDM Server REM ********************************************* CALL server start REM ********************************************* REM Connect DDM Server to Zookeeper REM ********************************************* CALL server zookeeper connect -url '<zookeeper_ensemble>' REM ********************************************* REM Create a new ephemeral node for the DDM Server REM ********************************************* CALL server zookeeper create -type EPHEMERAL -path /<DDM cluster>/<name of ephemeral node> -data "hive.server2.instance.uri=<ddmhost1>:<DDM Hive service port>;hive.server2.authentication=KERBEROS;hive.server2.transport.mode=binary;hive.server2.thrift.sasl.qop=auth;hive.server2.thrift.bind.host=<ddmhost1>;hive.server2.thrift.port=<DDM Hive service port>;hive.server2.use.SSL=false;hive.server2.authentication.kerberos.principal=<hive service principal for ddmhost1>"