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 Git and GitHub on windows

Step 01 : Download Git https://git-scm.com Step 02 : GitHub https://github.com Step 03 : Create new Repositories Step 04 : Open Git Bash Create folder name:- First in ” C local disk”. Step 05 : Configure Step 06 : Create files inside FirstGit and commit, upload in account Like :- test.txt file inside FirstGit Open … Read more

Install and Configure Prometheus Server and Node Exporter in RHEL

Install and Configure Prometheus Server and Node Exporter There are 3 importants components to make sure Prometheus is up and running. We need to install and configure Prometheus Server, Node Exporter, and Dashborad which can be PromDash or Grafana. Step 1 – Install and configure Prometheus Server in RHEL 7 Download Prometheus Download Prometheus from … Read more

Install and Configure Grafana in Ubuntu and Debian

Install and Configure Grafana in Ubuntu and Debian Step 1 – Download & Install Grafana Download Grafana RPM file RPM for Linux from https://grafana.com/grafana/download?platform=linux # Ubuntu & Debian $ wget https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana_5.2.2_amd64.deb $ sudo dpkg -i grafana_5.2.2_amd64.deb Step 2 – Understand Grafana Installation details in Ubuntu/Debian Installs binary to /usr/sbin/grafana-server Installs Init.d script to /etc/init.d/grafana-server Creates … Read more

Install and Configure Grafana in RHEL 7

Install and Configure Grafana in RHEL 7 Step 1 – Download & Install Grafana Download Grafana RPM file RPM for Linux from https://grafana.com/grafana/download?platform=linux # RHEL 7 $ sudo yum install initscripts fontconfig -y $ wget https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-5.2.2-1.x86_64.rpm $ sudo yum localinstall grafana-5.2.2-1.x86_64.rpm Step 2 – Understand Grafana Installation details in RHEL/CENTOS Installs binary to /usr/sbin/grafana-server Copies … Read more

Configuring NFS to access the files from remote Linux machine as a mount point

I have a 2Tb of storage on a linux box, and i want to use that storage as a mount point from another machine. As a root user on the remote machine, specify the mount point details $cat /etc/exports /scratch *(rw) /fusionapps *(rw,no_root_squash) And restart the NFS sudo /etc/rc.d/init.d/nfs restart (All services should be in  running … Read more

windows-7-use-registry-to-configure

applicationPackaging created the topic: windows-7-use-registry-to-configure Search providers are stored in the registry in either the HKEY_CURRENT_USER or HKEY_LOCAL_MACHINE hives at Software\Microsoft\Internet Explorer\SearchScopes. To automate the process of adding search providers to computers , use a test computer to configure the search engines manually, including specifying the default search engine. Then, create a .reg file based … Read more

How to Configure Web Proxy on CentOS | Tutorials | scmGalaxy

web-proxy-on-centos

If your internet connection is behind a web proxy, you need to configure the following on your CentOS server: System-wide proxy settings – add the following lines to your /etc/environment file: # vi /etc/environment http_proxy=”http://proxysrv:8080/” https_proxy=”https://proxysrv:8080/” ftp_proxy=”ftp://proxysrv:8080/” no_proxy=”.mylan.local,.domain1.com,host1,host2″ To apply these settings without restarting the machine run the following commands on the bash shell: export … Read more

How to Set or Configure Proxy in Linux and Windows System? – scmGalaxy

proxy-configuratin-in-linux-and-windows

Setting the proxy configuration in Linux and Windows If you use a proxy server or firewall, you may need to set the http_proxy environment variable in order to access some url from command-line. Windows Command line set http_proxy=http://your_proxy:your_port set http_proxy=http://username:password@your_proxy:your_port set https_proxy=https://your_proxy:your_port set https_proxy=https://username:password@your_proxy:your_port Windows GUI 1. Open the Control Panel and click the System … Read more

Configure the Knife Command – Chef

configure-the-knife-command

We now have to configure the knife command. This command is the central way of communicating with our server and the nodes that we will be configuring. We need to tell it how to authenticate and then generate a user to access the Chef server. Luckily, we’ve been laying the groundwork for this step by acquiring the … Read more