본문 바로가기

DB/Tibero

[Tibero6 Error] 티베로 오류 A shared memory segment with the same key already exists

728x90

tbboot 실행 시

A shared memory segment with the same key already exists 에러가 발생한다면

SHM_KEY로 알려주는 공유 메모리가 가득 차서 기동이 안된다.

tip파일에서 SHM값을 키워줘도 되고, 디스크 용량이 충분하면 SHM을 비워줘서 공간을 확보해주면 해결된다.

 

아래는 해당 공간을 확보하는 방법이다.

A shared memory segment with the same key already exists 오류

ipcs

※ ipc == Linux, Unix에서 프로세스간 통신하는 기술

ipcs (ipc Search): 자원 조회

 

오류에서 SHM_KEY = 0x3a3e2ca9 키에 맞는 shmid(공유 메모리 아이디)를 찾는다.

ipcrm -m 위에서 찾은 숫자

※  ipcrm(ipc Remove) : 자원 삭제 

※  -m : 공유 메모리 삭제

위와 같이 삭제한 후 다시 tbboot

nomal모드(default)로 실행 된 모습을 확인할 수 있다.