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 […]
Category: Centos
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 […]
SSH login without password in a simple 3 Steps
In this page, I would like to enable the ssh passwordless entry to a server in 3 steps. For this, we are making use of ssh-keygen and ssh-copy-id ssh-keygen helps you generate SSH keys if the key are not generated ssh-copy-id will help you to copy the key to the […]