0

私はLinuxが初めてです。Clouderaのドキュメントには、cloudera CHD 5.4 で HDFS ファイルとして sentry-provider.ini ファイルを作成することが記載されています。Linuxでiniファイルを作成する方法に関する良い記事が見つかりません。

Cloudera セットアップで Apache Sentry を構成して、ハイブ メタデータにロール ベースのセキュリティを持たせようとしています。

LinuxでHDFSとしてiniファイルを作成する方法は?

4

1 に答える 1

1

Simple way is: You can create this "sentry-provider.ini" file on your local (on linux terminal)

vi sentry-provider.ini

Then put the content specified at this link in the file by pressing i and then pasting the content. After this put the file on HDFS file system using command :

hdfs dfs -copyFromLocal sentry-provider.ini etc/sentry/

Remember that the path etc/sentry/ is the path on HDFS from your user's home directory which is typically /user/username/

于 2016-03-03T14:57:29.170 に答える