Reputation: 1
I am trying to install CDH5 on centOS. My cloudera downloads is at at/home/cloudera/Downloads. But when I follow the instruction, I got this error. Could anyone help?
root@localhost ~]# sudo yum --nogpgcheck localinstall cloudera-cdh-5-0.x86_64.rpm
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Local Package Process
Cannot open: cloudera-cdh-5-0.x86_64.rpm. Skipping.
Nothing to do
Upvotes: 0
Views: 452
Reputation: 531
Upvotes: 1
Reputation: 181
First check permission on the .rpm file ls -l give permission with following command chmod +x cloudera-cdh-5-0.x86_64.rpm then execute following command. sudo yum --nogpgcheck localinstall cloudera-cdh-5-0.x86_64.rpm
I hope it will help you :)
Upvotes: 0
Reputation: 1074
rpm's path is missing in yum localinstall, try use the full path or cd to download folder first and try again:
cd Your_Download_Folder
sudo yum --nogpgcheck localinstall cloudera-cdh-5-0.x86_64.rpm
Upvotes: 0