安装weblogic时候报错:The temporary extraction directory cannot be created in the default location.
程序员文章站
2022-04-28 22:12:58
...
The temporary extraction directory cannot be created in the default location.
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权限 即可。