Skip to content

  • Top Certifications
  • Courses
  • Tutorials
  • Forum & Support
  • DevOps Tools
  • Slides
  • Update
  • Professional
  • web-proxy-on-centos
    Linux

    How to Configure Web Proxy on CentOS | Tutorials | scmGalaxy

    ByRajesh Kumar October 17, 2016September 25, 2018

    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 Configure Web Proxy on CentOS | Tutorials | scmGalaxyContinue

  • General

    Chetan Singh

    ByRajesh Kumar October 6, 2016May 29, 2020

    Read More Chetan SinghContinue

  • General

    Chetan Singh

    ByRajesh Kumar October 6, 2016May 29, 2020

    Read More Chetan SinghContinue

  • General

    Rajesh Kumar

    ByRajesh Kumar October 6, 2016May 29, 2020

    Read More Rajesh KumarContinue

  • team-foundation-server-2015-installation
    Uncategorised

    How to Install Team Foundation Server 2015 | TFS Installation Guide

    ByRajesh Kumar August 20, 2016December 14, 2017

    How to install Team Foundation Server 2015 We need to start installating few things…. 1. Install MS SQL SERVER EXPRESS 2016 Download the SQL Server 2016 Express installer (SQLServer2016-SSEI-Expr) on this page that, when executed, will present options to perform an installation or download media only. Download – https://www.microsoft.com/en-us/download/details.aspx?id=52679 2. Install TFS 2015 Choose one…

    Read More How to Install Team Foundation Server 2015 | TFS Installation GuideContinue

  • generate-jenkins-job-configuration-automatically
    Jenkins

    Generate Jenkins Job Configuration Automatically | Jenkins Tutorials

    ByRajesh Kumar August 17, 2016November 19, 2021

    Generate Jenkins Job Configuration Automatically? Job DSL Plugin The job-dsl-plugin allows the programmatic creation of projects using a DSL. Pushing job creation into a script allows you to automate and standardize your Jenkins installation, unlike anything possible before. More – https://wiki.jenkins-ci.org/display/JENKINS/Job+DSL+Plugin https://github.com/jenkinsci/job-dsl-plugin/wiki/Tutorial—Using-the-Jenkins-Job-DSL Multi-Branch Project Plugin This plugin adds additional project types that create sub-projects for…

    Read More Generate Jenkins Job Configuration Automatically | Jenkins TutorialsContinue

  • team-foundation-build-2010
    TFS | Training

    Introducing Team Foundation Build 2010 | TFS 2010 Training

    ByRajesh Kumar August 8, 2016December 16, 2017

    Introducing Team Foundation Build 2010 Introduction Build Automation Flickr’s Continuous Deployment Why Automate the Build? Team Build Overview Demo: Team Build Overview Machines, Controllers, and Agents Build System Topologies Build Agent Software Installation New in 20102 Build Status and Notification Demo: Build Alerts Demo: Build Notification Application4m 44s The End Game Summary The Build Environment…

    Read More Introducing Team Foundation Build 2010 | TFS 2010 TrainingContinue

  • software-development-with-team-foundation-server-2015
    TFS | Training

    Software Development with Team Foundation Server 2015

    ByRajesh Kumar August 8, 2016December 16, 2017

    Introduction Understanding the Feature Path from TFS 2013 Introduction Overview TFS 2013 Update Timeline Agile Tools Demo: Agile Tools Git Demo: Git Improvements Demo: Git CodeLens Demo: Pull Requests Testing Demo: Testing Features Summary Installing and Configuring TFS 2015 Introduction Install Options TFS Pre-upgrade Tool Demo: Pre-upgrade Process Upgrading to TFS 2015 Demo: Upgrade from…

    Read More Software Development with Team Foundation Server 2015Continue

  • Top 4 open source alternatives to Slack for team collaboration and Chat
    General

    Top 4 open source alternatives to Slack for team collaboration and Chat

    ByRajesh Kumar July 28, 2016December 16, 2017

    Off course Slack is market leader in terms team collaboration and Chat but here are the list of 4 open source alternatives to Slack for team collaboration and Chat. Slack  Slack offers a lot of IRC-like features: persistent chat rooms (channels) organized by topic, as well as private groups and direct messaging (again, historically based on…

    Read More Top 4 open source alternatives to Slack for team collaboration and ChatContinue

  • proxy-configuratin-in-linux-and-windows
    Linux

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

    ByRajesh Kumar July 28, 2016September 25, 2018

    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 How to Set or Configure Proxy in Linux and Windows System? – scmGalaxyContinue

  • docker-training-agenda
    Training | Docker

    Docker Training | Docker Course | Agenda

    ByRajesh Kumar July 13, 2016November 19, 2021

    Need to learn Docker? This is the training for you! This training provides a soup-to-nuts learning experience for core Docker technologies, including the Docker Engine, Images, Containers, Registries, Networking, Storage, and more. All of the behind the scenes theory is explained, and all concepts are clearly demonstrated on the command line. No prior knowledge of…

    Read More Docker Training | Docker Course | AgendaContinue

  • setup-a-puppet-learning-vm
    Puppet

    How to Setup Puppet Learning VM – Complete Process/Guide

    ByRajesh Kumar July 9, 2016November 19, 2021

    Download the VM(Zip File here) https://pe-education-vms.s3.amazonaws.com/learning/learning_puppet_vm.zip   Minimum requirements Internet-enabled Windows, OS X, or Linux computer with 10GB free space and a VT-x/AMD-V enabled processor. Up to date virtualization software. See the setup instructions below for details. Setting up the Learning VM Before beginning, you may want to use the MD5 sum provided at the…

    Read More How to Setup Puppet Learning VM – Complete Process/GuideContinue

  • msbuild-tutorial
    Msbuild

    MSBuild Tutorial Reference for Beginner | MSBuild Learning Resources | scmGalaxy

    ByRajesh Kumar July 2, 2016December 17, 2017

    Walkthrough: Creating an MSBuild Project File from Scratch How to: Write a Simple MSBuild Project MSBuild Basics Build Your Project File from Scratch using MSBuild

    Read More MSBuild Tutorial Reference for Beginner | MSBuild Learning Resources | scmGalaxyContinue

  • extension-used-in-dotnet-and-msbuild
    Msbuild

    Extension used in DOTNET and MSBuild Projects

    ByRajesh Kumar July 2, 2016December 17, 2017

    .proj A popular convention for generic use. Commonly used by a main build script. Examples: build.proj main.proj company.product.build.proj .targets .targets files are those which is meant to be imported into other files using the Import element. Since these files are strictly re-useable they don’t actually build anything. They typically are missing the properties and item…

    Read More Extension used in DOTNET and MSBuild ProjectsContinue

  • tfs-interview-questions-and-answers
    Interview Questions & Answers

    Top 25 TFS Interview Questions and Answers

    ByRajesh Kumar July 1, 2016December 26, 2017

    TFS Interview Questions 1) What is Team  Foundation Server? What does it cover – version control? build processes? bug tracking? task management? Team Foundation Server is defined in the documentation as: Team Foundation is a collection of collaborative technologies that support a team effort to deliver a product. While the Team Foundation technologies are typically…

    Read More Top 25 TFS Interview Questions and AnswersContinue

  • devops-training-institutes-in-hyderabad
    Training

    Best DevOps Training Institutes in Hyderabad | scmGalaxy

    ByRajesh Kumar June 28, 2016December 17, 2017

    We have great participation from students from Hyderabad and People based out in USA for our DevOps Training. Feature of the DevOps Training by us – Enroll once and Benefit Life Time 1.       Lifetime free access to our DevOps class as we keep introducing new tool as part of the DevOps Course 2.       Life time…

    Read More Best DevOps Training Institutes in Hyderabad | scmGalaxyContinue

  • jenkins-installation-using-docker
    Jenkins | Docker

    How to Install Jenkins using Docker | Step by step guide | scmGalaxy

    ByRajesh Kumar March 10, 2016September 19, 2018

    Step 1: Installing Docker [code] $ apt-get install docker (Ubuntu) $ yum install docker  (RHEL/CENTOS) [/code] For more info, please following this http://www.scmgalaxy.com/scm/software-containers/how-to-install-docker-in-linux.html Step 2:  First, pull the official jenkins image from Docker repository. [code]$ docker pull jenkins [/code] Step 3: Next, run a container using this image and map data directory from the container to…

    Read More How to Install Jenkins using Docker | Step by step guide | scmGalaxyContinue

  • linux-shell-scripting-guide-and-tutorial
    Shell Script

    Linux Tutorials: Complete Reference for Commands & Scripting

    ByRajesh Kumar March 3, 2016August 20, 2023

    Linux User Commands Linux Commands for User Linux Commands reference in scmGalaxy forum Linux Admin Commands Linux Commands for Administrator Main Responsibilities of the Linux System Administrator 20 pmap Commands Examples in Linux / UNIX 20 mpstat Commands Examples in Linux / UNIX 20 iostat Commands Examples in Linux / UNIX 20 vmstat Commands Examples…

    Read More Linux Tutorials: Complete Reference for Commands & ScriptingContinue

  • bash-or-ssh-into-a-running-container
    Uncategorised

    How to get bash or ssh into a running container in background mode?

    ByRajesh Kumar February 23, 2016December 17, 2017

    How to get bash or ssh into a running container in background mode? Step 1: First of all, try to find your active container by running # docker ps or # docker ps -a Step 2: If the container is not running, # docker start your_id Step 3: If we use attach we can use…

    Read More How to get bash or ssh into a running container in background mode?Continue

  • install-atlassian-jira-using-docker
    Jira

    How to install Atlassian Jira using Docker?

    ByRajesh Kumar February 23, 2016November 19, 2021

    Install Atlassian Jira using Docker Download and Run the jira latest: # docker run –detach –publish 8080:8080 cptactionhank/atlassian-jira:latest Then simply navigate your preferred browser to http://[dockerhost]:8080 and finish the configuration. Notes: JIRA Home location: /var/atlassian/jira JIRA Installation location: /opt/atlassian/jira Reference: https://hub.docker.com/r/cptactionhank/atlassian-jira/

    Read More How to install Atlassian Jira using Docker?Continue

  • sonatype-nexus-installation-using-docker
    SonaType Nexus

    How to Install Sonatype Nexus installation using Docker?

    ByRajesh Kumar February 23, 2016November 19, 2021

    Sonatype Nexus Repository Manager 2 Install a Docker Engine Installation Instructions can be found here – http://www.devopsschool.com/tutorial/docker/docker-install-and-configuration.html Download a Sonatype Nexus Image > docker pull sonatype/nexus For Sonatype Nexus Repository Manager 2 OSS, To run (if port 8081 is open on your host): > docker run -d -p 8081:8081 –name nexus sonatype/nexus:oss For Sonatype Nexus…

    Read More How to Install Sonatype Nexus installation using Docker?Continue

  • jstack-utility
    General

    The jstack Utility | jstack Tutorial | scmGalaxy

    ByRajesh Kumar January 25, 2016December 17, 2017

    The release of JDK 8 introduced Java Mission Control, Java Flight Recorder, and jcmd utility for diagnosing problems with JVM and Java applications. It is suggested to use the latest utility, jcmd instead of the previous jstack utility for enhanced diagnostics and reduced performance overhead. The following sections describe troubleshooting techniques with jstack utility. Troubleshoot with jstack Utility Force a Stack Dump Stack…

    Read More The jstack Utility | jstack Tutorial | scmGalaxyContinue

  • pmap-commands
    Linux

    Linux Tutorials: pmap commands examples

    ByRajesh Kumar December 12, 2015April 24, 2022

    You can find the memory used by a program (process) by looking into /proc directory or using standard command such as ps or top. However, you must calculate all memory usage by hand i.e. add Shared Memory + mapped file + total virtual memory size of the process + Resident Set Size + non-swapped physical…

    Read More Linux Tutorials: pmap commands examplesContinue

  • Linux

    Linux Tutorials: iostat commands examples

    ByRajesh Kumar December 12, 2015April 24, 2022

    iostat command is a command that used for monitoring system input/output device loading by observing the time the devices are active in relation to their average transfer rates. The iostat create reports that can be used to change system configuration to better balance the input/output between physical disks. You can use iostat command which report…

    Read More Linux Tutorials: iostat commands examplesContinue

  • xargs-commands
    Linux

    Linux Tutorials: xargs commands examples

    ByRajesh Kumar December 12, 2015April 24, 2022

    Under Development The xargs command is extremely useful when we combine it with other commands.This tutorials explains the usage of xargs command using few simple examples. 1. Xargs Basic Example The xargs command (by default) expects the input from stdin, and executes /bin/echo command over the input. When you execute xargs without any argument, or…

    Read More Linux Tutorials: xargs commands examplesContinue

  • partition-commands-in-linux-unix
    Linux

    Linux Tutorials: mount & unmount commands examples

    ByRajesh Kumar December 12, 2015April 24, 2022

    Once you create a partition, you should use mount command to mount the partition into a mount point (a directory), to start using the filesystem. You need to add the -t FILESYSTEMTYPE argument to the command, replacing FILESYSTEMTYPE with your filesystem type.valid filesystem types are: auto – this is a special one. It will try…

    Read More Linux Tutorials: mount & unmount commands examplesContinue

  • puppet-training
    Training

    Puppet Training | Puppet Course | Agenda | scmGalaxy

    ByRajesh Kumar November 27, 2015November 19, 2021

    The basic course program is outlined here The Basics Introduction To Configuration Management About The Author Why Puppet? How To Access Your Working Files The Puppet Infrastructure uppet Agents Puppet Masters MCollective And Systems Orchestration Cross Platform Puppet The Puppet Run Cycle Introduction To Puppet Run Cycle Gathering System Facts Node Matching And Catalogue Compilation…

    Read More Puppet Training | Puppet Course | Agenda | scmGalaxyContinue

  • chef-training
    Training

    Chef Training | Chef Course | Online | Classroom | scmGalaxy

    ByRajesh Kumar November 27, 2015November 19, 2021

    ScmGalaxy is the best contributor to Chef Courses, training, and certification. Our Chef Trainers and advisers are highly equipped with more than 15 years of rich experience in the Software industry. DevOps! Which has captured a unique position in the IT world and has become a crucial part of software engineering methodology.  To better the…

    Read More Chef Training | Chef Course | Online | Classroom | scmGalaxyContinue

  • devops-training
    Training

    DevOps Training | DevOps Course | Online | Classroom | scmGalaxy

    ByRajesh Kumar November 27, 2015December 17, 2017

    About the DevOps Course DevOps integrates devlopers and operation teams in order to improve collobration and productivity by automation infrastrcure, automationg workflows and continously application performance. DevOps helps You deliver the best user experience possible and benefits your company by increasing the frequency of deployments of your software and services. DevOps Helps to improve performance…

    Read More DevOps Training | DevOps Course | Online | Classroom | scmGalaxyContinue

  • build-and-release-engineer-training
    Training

    Build and Release Engineer Training | Build and Release Engineer Course | scmGalaxy

    ByRajesh Kumar November 27, 2015December 17, 2017

    About the Build and Release Course Build and Release integrates devlopers and operation teams in order to improve collobration and productivity by automation infrastrcure, automationg workflows and continously application performance. Build and Release helps You deliver the best user experience possible and benefits your company by increasing the frequency of deployments of your software and…

    Read More Build and Release Engineer Training | Build and Release Engineer Course | scmGalaxyContinue

Page navigation

Previous PagePrevious 1 … 374 375 376 377 378 … 388 Next PageNext

© 2026 - WordPress Theme by Kadence WP

  • Top Certifications
  • Courses
  • Tutorials
  • Forum & Support
  • DevOps Tools
  • Slides
  • Update
  • Professional
Search