1

I setup a CDH4
Now I can configure the hadoop on the web page.

I want to know where did the cdh put the configuration file on the local file system.

for example, I want to find the core-site.xml, but where is it?

hellojinjie
  • 1,868
  • 3
  • 17
  • 23

1 Answers1

0

By default, the installation of CDH has the conf directory located in

/etc/hadoop/

You could always use the following command to find the file:

$ sudo find / -name "core-site.xml"
Jake Z
  • 1,520
  • 1
  • 17
  • 26
  • Thx, I found it. I did found it before, because I did not finish the installation of CDH. – hellojinjie Oct 17 '13 at 02:52
  • There are multiple copies of the core-site.xml in a particular node. More information [here](http://blog.cloudera.com/blog/2013/07/how-does-cloudera-manager-work/). – Praveen Sripati Oct 16 '15 at 01:59