Hi,
I am on CentOS, and this is the Linux tuning I use:
echo “Linux Tuning”
sudo sh -c “printf ‘* soft nofile 65535 \n* hard nofile 65535’ >> /etc/security/limits.conf”
sudo sh -c “printf ‘UseLogin yes’ >> /etc/ssh/sshd_config”
more ports for testing
sudo sysctl -w net.ipv4.ip_local_port_range=“1025 65535”
increase the maximum number of possible open file descriptors:
echo 300000 | sudo tee /proc/sys/fs/nr_open
echo 300000 | sudo tee /proc/sys/fs/file-max
However, I am regularly seeing the error “Cannot assign requested address”. I wondered if there was any more OS tuning I need to do?
Aidy