SySctl & file-max
A quick means of increasing this, or any sysctl variable
#echo 65536 > /proc/sys/fs/file-max #sysctl -a | grep file-max >> /etc/sysctl.conf #sysctl -p
You can also change kernel parameters on the fly with switch ‘-w’
#sysctl -w vm.swappiness=0This change will be reverted as this does not modify /etc/sysctl.conf. Edits to this file will implement reboot persistence.