Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the js_composer domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/holhol2/public_html/wp-includes/functions.php on line 6121
How To Install Graylog 3.0 on CentOS 7 / RHEL 7 - Centos/Redhat

How To Install Graylog 3.0 on CentOS 7 / RHEL 7 – Centos/Redhat

Graylog is an open-source log management tool which helps you to collect, index and analyze any machine logs centrally. This guide will help you to install Graylog on CentOS 7 / RHEL 7. Components MongoDB – Being a database to store the configurations and meta information. Elasticsearch – It stores the log messages received from […]

Use Flow Control Statements in Awk

How to Use Flow Control Statements in Awk – Part 12

When you review all the Awk examples we have covered so far, right from the start of the Awk series, you will notice that all the commands in the various examples are executed sequentially, that is one after the other. But in certain situations, we may want to run some text filtering operations based on […]

How to Write Scripts Using Awk Programming Language

How to Write Scripts Using Awk Programming Language – Part 13

All along from the beginning of the Awk series up to Part 12, we have been writing small Awk commands and programs on the command line and in shell scripts respectively. However, Awk, just as Shell, is also an interpreted language, therefore, with all that we have walked through from the start of this series, […]

How to Allow Awk to Use Shell Variables – Part 11

How to Allow Awk to Use Shell Variables – Part 11

When we write shell scripts, we normally include other smaller programs or commands such as Awk operations in our scripts. In the case of Awk, we have to find ways of passing some values from the shell to Awk operations. This can be done by using shell variables within Awk commands, and in this part […]