Segmentation fault报错
Tags: OracleSegmentation fault故障处理
案例1:图形化界面安装OGGMA for bigdata 报错“640 Segmentation fault $CMDDIR/install/.oui $*”
[oracle@lhrogg214mabigdata Disk1]$ ./runInstaller
Starting Oracle Universal Installer...
Checking Temp space: must be greater than 120 MB. Actual 438499 MB Passed
Checking swap space: must be greater than 150 MB. Actual 10546 MB Passed
Checking monitor: must be configured to display at least 256 colors. Actual 16777216 Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2022-07-20_11-26-08AM. Please wait ..../runInstaller: line 45: 640 Segmentation fault $CMDDIR/install/.oui $*
解决
原因:权限不足,如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | [root@lhrogg214mabigdata soft]# ll total 338276 -rw-r--r-- 1 root root 346108684 Jul 18 14:43 214000_ggs_Linux_x64_BigData_services_shiphome.zip drwxr-xr-x 3 root root 4096 Nov 4 2021 ggs_Linux_x64_BigData_services_shiphome -rw-r--r-- 1 root root 1361 Nov 20 2021 OGGBD-21c_README.txt -rw-r--r-- 1 root root 266623 Nov 21 2021 OGG_BigData_21.4.0.0.0_Release_Notes.pdf [root@lhrogg214mabigdata soft]# chown oracle.oinstall ./* [root@lhrogg214mabigdata soft]# chown oracle.oinstall ./* -R [root@lhrogg214mabigdata soft]# ll total 338276 -rw-r--r-- 1 oracle oinstall 346108684 Jul 18 14:43 214000_ggs_Linux_x64_BigData_services_shiphome.zip drwxr-xr-x 3 oracle oinstall 4096 Nov 4 2021 ggs_Linux_x64_BigData_services_shiphome -rw-r--r-- 1 oracle oinstall 1361 Nov 20 2021 OGGBD-21c_README.txt -rw-r--r-- 1 oracle oinstall 266623 Nov 21 2021 OGG_BigData_21.4.0.0.0_Release_Notes.pdf [root@lhrogg214mabigdata soft]# |