Skip to content

Instantly share code, notes, and snippets.

@FullStackForger
Last active August 29, 2015 14:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FullStackForger/2bc64ba3c7e98daf955e to your computer and use it in GitHub Desktop.
Save FullStackForger/2bc64ba3c7e98daf955e to your computer and use it in GitHub Desktop.
disabling transparent hugepage for MongoDB on Ubuntu
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
mongo_restart=0
if test -f /sys/kernel/mm/transparent_hugepage/enabled; then
mongo_restart=1
echo never > /sys/kernel/mm/transparent_hugepage/enabled
fi
if test -f /sys/kernel/mm/transparent_hugepage/defrag; then
mongo_restart=1
echo never > /sys/kernel/mm/transparent_hugepage/defrag
fi
if [ "$mongo_restart" = 1 ]; then
service mongod restart
fi
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment