Home » Fix lỗi: “ORA-00845: MEMORY_TARGET not supported on this system” trên Oracle

Fix lỗi: “ORA-00845: MEMORY_TARGET not supported on this system” trên Oracle

by tuanlp

 💡 ORA-00845: MEMORY_TARGET not supported on this system

Bạn sẽ gặp lỗi ORA-00845 nếu Shared Memory File System không đủ để cung cấp cho Instance.

GIẢI PHÁP / SOLUTION

Tăng Shared Memory để fix lỗi, sử dụng command sau:

# mount -t tmpfs shmfs -o size=3G /dev/shm
# df -h

Tuy nhiên, nếu bạn reboot lại máy chủ nó sẽ không còn nữa.

Vì vậy bạn nên sửa trong file /etc/fstab bổ sung thêm 1 dòng như sau:

tmpfs /dev/shm                    tmpfs    defaults,size=3g        0 0

Bây giờ chúng ta thử khởi động Oracle Database Instance

You may also like