Đã gặp vấn đề chính xác với OVH / Kimsufi do hạt nhân tùy chỉnh của họ được cài đặt theo mặc định.
Trước tiên, trước tiên bạn cần có nhân ubuntu thông thường chứ không phải nhân do công ty lưu trữ của bạn sửa đổi.
Sau đó, bạn cần tắt các trang khổng lồ trong suốt để loại bỏ cảnh báo và cải thiện hiệu suất bộ nhớ liên quan đến quản lý bộ nhớ:
-
Thêm tập lệnh này dưới dạng
/etc/init.d/disable-transparent-hugepage
#!/bin/sh ### BEGIN INIT INFO # Provides: disable-transparent-hugepages # Required-Start: $local_fs # Required-Stop: # X-Start-Before: mongod mongodb-mms-automation-agent # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Disable Linux transparent huge pages # Description: Disable Linux transparent huge pages, to improve # database performance. ### END INIT INFO case $1 in start) if [ -d /sys/kernel/mm/transparent_hugepage ]; then thp_path=/sys/kernel/mm/transparent_hugepage elif [ -d /sys/kernel/mm/redhat_transparent_hugepage ]; then thp_path=/sys/kernel/mm/redhat_transparent_hugepage else return 0 fi echo 'never' > ${thp_path}/enabled echo 'never' > ${thp_path}/defrag unset thp_path ;; esac
-
Làm cho tập lệnh có thể thực thi được
sudo chmod 755 /etc/init.d/disable-transparent-hugepage
-
Đăng ký nó tại boot
sudo update-rc.d disable-transparent-hugepage defaults
Tham khảo: https://docs.mongodb.org/v3. 0 / hướng dẫn / minh bạch-trang lớn /