Hi, I am new on oozie and hadoop. i am using cdh4 on cloudera virtul
machine single node. i am trying to run oozie project following below link

https://github.com/jrkinley/oozie-examples/blob/master/README.md

this is my *job.properties* file

nameNode=${hadoop.name.node}
jobTracker=${hadoop.job.tracker}

queueName=default
oozie.use.system.libpath=true

oozie.wf.application.path=${nameNode}/workflows/oozie-examples

this is my *config-default.xml*
<!-- Default values for the workflow job parameters -->
<configuration>
        <property>
                <name>jobTracker</name>
                <value>localhost.localdomain:8021</value>
        </property>
        <property>
                <name>nameNode</name>
                <value>hdfs://localhost.localdomain:8020</value>
        </property>
        <property>
                <name>queueName</name>
                <value>default</value>
        </property>
</configuration>

my hdfs directory structure is

 /workflows/oozie-example/job.properties

 /workflows/oozie-example/config-default.xml
....


*i am running job by this command *
oozie job -config /oozie-examples/job.properties -run

*this give me this error*
.io.IOException: configuration file [/oozie-examples/job.properties] not found
        at org.apache.oozie.cli.OozieCLI.getConfiguration(OozieCLI.java:641)
        at org.apache.oozie.cli.OozieCLI.jobCommand(OozieCLI.java:795)
        at org.apache.oozie.cli.OozieCLI.processCommand(OozieCLI.java:512)
        at org.apache.oozie.cli.OozieCLI.run(OozieCLI.java:485)
        at org.apache.oozie.cli.OozieCLI.main(OozieCLI.java:182)
configuration file [/oozie-examples/job.properties] not found

 Kindly help me out any help would be highly appreciated

Reply via email to