Published on : April 8, 2019 by Anitta Jose
SSL certificates are used to secure our websites. Once we install SSL on our website, we should redirect all our website URL’s to its HTTPS version. There are many ways to redirect http to https. Redirect HTTP to HTTPS with Apache If we are having a user level access in an Apache server, .htaccess file […]
Published on : April 6, 2019 by Anitta Jose
Pipe is a method for Inter Process Communication (IPC) which send output of one process to another process. As you know, pipes are of two types: Unnamed Pipes Named Pipes Unnamed Pipe An example of unnamed pipe is as follows: $ ls | wc -l Here output of first command is given as an input […]
Published on : February 18, 2019 by Anitta Jose
SupportSages being a server management company, have witnessed the evolution of quite a few system administrators. In my personal opinion, out of all the qualities I have listed below, I personally believe, it is the ‘Never Say Die’ attitude and passion for continuous learning and exploring the system internals which makes one a great system […]
Published on : February 12, 2019 by Anitta Jose
UDP is being a connectionless protocol, you can t reliably say that the port is open or not. Below two commands are the only way of checking the same. When you send a packet to the open port, there need not be any acknowledgment saying that the port is open. Theoretically, UDP should give a […]
Published on : June 26, 2017 by Anitta Jose
Sed – The Stream Editor A stream editor is used to perform basic text transformations on an input file. Sed command is mainly used to replace the text in a file. But it is a powerful text processing tool. Some uses of sed command are explained below with examples: Consider the text file “test” as […]