Jailkit is an easy to use tool to create and maintain jail environments for shell users on Linux. In this guide, I will show you how to move PHP and its dependencies into the jail so that the jailed user can execute PHP scripts inside the jail.
Disable IPv6 networking on CentOS
Follow these steps to disable IPv6 on CentOS. Edit the /etc/sysctl.conf file, I will use the nano editor here: nano /etc/sysctl.conf And add the following line at the end of the file: net.ipv6.conf.all.disable_ipv6 = 1 Then run: sysctl -p to load the new settings. The next step is to edit the network card configuration file (/etc/sysconfig/network-scripts/ifcfg-eth*) ... Read more