Why I got ORA-27121: unable to determine size of
shared memory segment ?
A. The full erros stack:
ERROR:
ORA-01034: ORACLE not available
ORA-27121: unable to determine size of shared memory
segment
Linux Error: 13: Permission denied
This is caused by Oracle installer not setting setuid
on $ORACLE_HOME/bin/oracle.
To fix do:
$ cd $ORACLE_HOME/bin
$ chmod 6751 oracle
Tags: Error, Oracle, sqlplus
구형 삼성장비에 Ubuntu를 PXE로 설치를 했는데 부팅시 다음과 같은 오류가 발생해서 또 삽질을 시작했다.
…
ALERT! /dev/disk/by-uuid/3.. does not exist. Dropping to a shell.
…
의뢰로 해결방법은 간단했다.
Grub Booting 상태에서 Esc Key를 눌르고 “e”를 눌러 edit Mode로 들어가서 Kernel에서 다시 “e”를 눌러 edit Mode로 들어가서 라인 맨 끝에 다음문장을 추가해 준다.
rootdelay=130
그러면 정상적으로 부팅이 된다. 아마 구형 HDD의 문제인듯 한데 자세한 이유는 모르겠다.
아시는분들 있으시면 답글주세요. ^^;
Tags: Error, How to, System