Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours scrolling social media and waste money on things we forget, but won’t spend 30 minutes a day earning certifications that can change our lives.
Master in DevOps, SRE, DevSecOps & MLOps by DevOpsSchool!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

How to Install and Configure Nagios Server and Clients | Nagios Tutorial

install-and-configure-nagios-server-and-clients

Install and Configure Nagios Server and Clients Download the Nagios Server Source copy from https://www.nagios.com/products/nagios-xi/ You can also use the direct download links as below; > wget https://assets.nagios.com/downloads/nagiosxi/5/xi-5.2.0.tar.gz Extract the xi-5.2.0.tar.gz using > tar -zxvf xi-5.2.0.tar.gz Run the following commands to install it. > ./fullinstall At the end of installation, you will get the url … Read more

Different Perforce Tools and Their Short Summary | Know About Different Perforce tools

different-perforce-tools

Different Perforce Tools and Their Short Summary Clients P4V: Visual Client – (Included in the P4V Installer) Provides access to versioned files through a graphical interface and also includes tools for merging and visualizing code evolution. P4Merge: Visual Merge Tool – (Included in the P4V Installer) Provides graphical three-way merging and side-by-side file comparisons P4: … Read more

Perforce Quick Facts – Perforce Quick Start Guide

perforce-quick-facts

Perforce Quick Facts Clients ============================================== P4V: Visual Client – (Included in the P4V Installer) Provides access to versioned files through a graphical interface and also includes tools for merging and visualizing code evolution. P4Merge: Visual Merge Tool – (Included in the P4V Installer) Provides graphical three-way merging and side-by-side file comparisons P4: Command-Line Client – … Read more

Script to list the clients in descending access date order

script-to-list-the-clients-in-descending-access-date-order

  Write a script to list the clients in descending access date order (for deleting obsolete clients).   #!/usr/bin/ruby require “P4” p4 = P4.new p4.tagged p4.connect clients = p4.run_clients.sort {|a,b| a[ “Access”].to_i <=> b[“Access”].to_i } clients[0…10].each do |c| stamp = Time.at( c[ “Access” ].to_i ) printf( “%-20s %s\n”, c[ “client” ], stamp ) end OR … Read more