在 hive 安裝過程中出現下列錯誤
/usr/bin/yum install hive_2_6_0_3_8
Installing : hive_2_6_0_3_8-1.2.1000.2.6.0.3-8.noarch
1/1
Error unpacking rpm package hive_2_6_0_3_8-1.2.1000.2.6.0.3-8.noarch
error: unpacking of archive failed on file /usr/hdp/2.6.0.3-8/hive/conf:
cpio: rename
Verifying : hive_2_6_0_3_8-1.2.1000.2.6.0.3-8.noarch
1/1
Failed:
hive_2_6_0_3_8.noarch 0:1.2.1000.2.6.0.3-8
Complete!
這裡到底有什麼問題?
ls -ltd /usr/hdp/2.6.0.3-8/hive/conf
drwxr-xr-x. 3 root root 24 Nov 26 14:16 /usr/hdp/2.6.0.3-8/hive/conf
ls -ltr /usr/hdp/2.6.0.3-8/hive/conf
total 0
drwxr-xr-x. 2 hive hadoop 6 Nov 26 14:16 conf.server
rpm -qa | grep hive | grep 1000
hive_2_6_0_3_8-jdbc-1.2.1000.2.6.0.3-8.noarch
答案1
在套件 hive_2_6_0_3_8-1.2.1000.2.6.0.3-8.noarch 中,這/usr/hdp/2.6.0.3-8/hive/conf
是常規檔案。在您的系統上它是一個目錄。 cpio(以及 rpm)無法將目錄轉換為檔案(反之亦然)。只需刪除(或移走)該目錄/usr/hdp/2.6.0.3-8/hive/conf
,然後重試。
答案2
包中hive_2_6_0_3_8-1.2.1000.2.6.0.3-8.noarch
是/usr/hdp/2.6.0.3-8/hive/conf
常規文件。
而在您的系統上它是一個目錄。
Cpio
(因此rpm
)無法將目錄轉換為檔案(反之亦然)。
只需rm
(或mv
)將目錄移動/usr/hdp/2.6.0.3-8/hive/conf
到另一個位置,然後重試。
這對我有用。