1. 程式人生 > >hive啟動時報錯: Relative path in absolute URI: ${system:java.io.t

hive啟動時報錯: Relative path in absolute URI: ${system:java.io.t

hive system:java.io.tmpdir

Exception in thread "main" java.lang.IllegalArgumentException: java.net.URISyntaxException: Relative path in absolute URI: ${system:java.io.tmpdir%7D/$%7Bsystem:user.name%7D
這是因為在hive-site.xml配置文件中需要配置system:java.io.tmpdir屬性。


在配置文件中加入:

<property>
<name>system:java.io.tmpdir</name>
<value>/usr/local/hive/tmp</value>

</property>



/usr/local/hive/tmp,是你自己建立的目錄

hive啟動時報錯: Relative path in absolute URI: ${system:java.io.t