安装weblogic时候报错:The temporary extraction directory cannot be created in the default location.

The temporary extraction directory cannot be created in the default location.

安装weblogic时候报错:The temporary extraction directory cannot be created in the default location._第1张图片

java -jar wls1036_generic.jar

装weblogic时候报错:The temporary extraction directory cannot be created in the default location.

  • 解决方式:
 #chmod o+t /tmp
  # ll -d /tmp
drwxrwxrwt. 11 root root 4096 Jan 20 10:33 /tmp

即可解决,重新执行java -jar wls1036_generic.jar 就不会报错了!
原因:/tmp权限问题,把/tmp赋予t权限 即可。

你可能感兴趣的:(其他)