Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

# yum install epel-release -y
# yum update -y
# yum install vim tmux htop -y

 

  • Set up passwordless SSH between our nodes:

...

# echo -e "elasticsearch - memlock unlimited\nstorm - nproc 257597" >> /etc/security/limits.conf

...

...

# ulimit -n 32768
# ulimit -u 65536
# echo -e "* - nofile 32768\n* - nproc 65536" >> /etc/security/limits.conf

``` -

Disable for the running system:

...

# sysctl -w net.ipv6.conf.all.disable_ipv6=1
# sysctl -w net.ipv6.conf.default.disable_ipv6=1
or
# echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6
# echo 1 > /proc/sys/net/ipv6/conf/default/disable_ipv6

...

To survive a reboot

...

, you need to add "net.ipv6.conf.all.disable_ipv6 = 1

...

" and "net.ipv6.conf.default.disable_ipv6 = 1

...

" to "/etc/sysctl.conf

...

":

# echo -e "\n# Disable IPv6\nnet.ipv6.conf.all.disable_ipv6 = 1\nnet.ipv6.conf.default.disable_ipv6 = 1" >> /etc/sysctl.conf

...


- Disable Transparent Hugepage. Add "transparent_hugepage=never" to the end of the kernel line in /etc/default/grub and reboot. (Ambari demands it, do we need to comply?):

 

```
Change the line:
GRUB_CMDLINE_LINUX="crashkernel=auto rd.lvm.lv=cl/root rd.lvm.lv=cl/swap rhgb quiet"
To:
GRUB_CMDLINE_LINUX="crashkernel=auto rd.lvm.lv=cl/root rd.lvm.lv=cl/swap rhgb quiet
transparent_hugepage=never"
Afterwards, run:
# grub2-mkconfig -o /boot/grub2/grub.cfg
```

 

After reboot check that changes were applied (make sure that word "never" is selected in square-brackets):

 

```
# cat /sys/kernel/mm/transparent_hugepage/enabled
always madvise [never]
```

...