Skip to content

Instantly share code, notes, and snippets.

View prasanjit-'s full-sized avatar
🇮🇳

Prasanjit Singh prasanjit-

🇮🇳
View GitHub Profile
@prasanjit-
prasanjit- / NFS-Server_Client
Created June 18, 2017 03:51
NFS-Server_Client Deployment
:: NFS ::
NFS, stands for Network File System, is a server-client protocol used for sharing files between linux/unix to unix/linux systems. NFS enables you to mount a remote share locally. You can then directly access any of the files on that remote share.
- Test Nodes:
NFS Server Hostname: server1
NFS Server IP Address: 192.168.1.104/24
NFS Client Hostname: server2
NFS Client IP Address: 192.168.1.102/24
Prerequisite Concepts -
- Hosts file in Linux :
- Web Server : Apache & Nginx, IIS
:: Steps to deploy a package in Linux:
1. Install it --> # yum install httpd
2. Configure it --> checking the config file
:: Vagrant ::
- Automates VBOX Creation
Steps: (For Vagrant on Windows System)
1. Download and install the most recent VirtualBox for Windows from https://www.virtualbox.org/wiki/Downloads
Start up VirtualBox
'''''''''''''''''''''''''''''
Nginx Deployment & Using Vagrant
'''''''''''''''''''''''''''''
:: Nginx ::
NGINX is a free, open-source, high-performance HTTP server and reverse proxy server. NGINX is known for its high performance, stability, rich feature set, simple configuration, and low resource consumption.
Installation:
'''''''''''''''''''''''''''''''''
Build & Test Automation Pipeline - (Module 4)
'''''''''''''''''''''''''''''''''
(A) - Simple Java Compilation using Jenkins & Core Compilation Commands
Prerequisites: Jenkins should have git plugin and installed with Java compiler.
yum install java-devel
Repo Reference: https://github.com/prasanjit-/hello-java
##-Ansible Notes-##
1. Install ansible in controller system (Tower)
# yum install ansible -y
2. Enable SSH Key access
# ssh-copy-id root@IP_OF_DESTINATION_NODE
3. Test ansible
ansible all -i 'localhost,' -c local -m ping
##-Monitoring-#
~ Cadvisor for Docker
sudo docker run \
--volume=/:/rootfs:ro \
--volume=/var/run:/var/run:rw \
--volume=/sys:/sys:ro \
--volume=/var/lib/docker/:/var/lib/docker:ro \
--publish=18888:8080 \
::PUPPET::
- Key Puppet components
Agent
Description A daemon process running on a node that collects information about the node and sends it to the Puppet master.
Catalog
Description Compilation of facts that specifies how to configure the node.
::CHEF::
-Workstation:
Chef comprises of a workstation which is configured to develop the recipes and cookbooks.
It is also configured to run the knife and synchronizes with the chef-repo to keep it up-to-date.
-Server:
Chef server stores recipes/cookbooks and assigns on to the nodes depending on their requirements.
-Nodes:
@prasanjit-
prasanjit- / svn_install_and_migrate.txt
Created June 17, 2017 17:30
To install Subversion server with frontend & also create script for GIT Migration
:: SUBVERSION Image with frontend ::
3343 - HTTP CSVN Admin Sites
4434 - HTTPS CSVN Admin Sites (If SSL is enabled)
18080 - Apache Http SVN
To run SVN Server execute the command below:
docker run -d -p 3343:3343 -p 4434:4434 -p 18080:18080 \