Recently we are getting request where the client want’s to access domain running on tomcat (which is running on port 8080) without the port number. Above requirement can be met using the mod_proxy on apache. You can use the below-pasted rule on the virtual host to meet the requirement: ProxyPass […]
Month: February 2018
Excluding a process or service from OOM Killer
The Linux kernel allocates memory upon the demand of the applications running on the system. Because many applications allocate their memory up front and often don’t utilize the memory allocated, the kernel was designed with the ability to over-commit memory to make memory usage more efficient. This over-commit model allows […]
Enabling APCU in EA4 (CPANEL) through script
APCu is the official replacement for the outdated APC extension. APC provided both opcode caching (opcache) and object caching. As PHP versions 5.5 and above include their own opcache, APC was no longer compatible, and its opcache functionality became useless. The developers of APC then created APCu, which offers only […]