What is Vagrant? Vagrant is an open-source virtualization manager, used for managing VM(Virtual Machine) and their configurations with few commands. It is supported by VirtualBox, Docker, Hyper-V as well as VMWare virtualization. Vagrants helps managing the configurations of VM created using any of the mentioned virtualization. Its available for Mac OS X,… Continue Reading Simple guide to start using Vagrant with VirtualBox

Python Script to take backup of folder on Amazon s3 – Windows Date Posted:17-04-2017 Amazon S3 is a storage where we can store files in a cloud. We can download the files from anywhere after we stored the files on cloud. There are many way to store the files on… Continue Reading Python Script to take backup of folder on amazon s3 – Windows

Working with Git Date Posted:16-04-2017 Git is a version control system designed to handle small projects to large projects in a effective way. This post explains on how to use git commands and how to handle git repositories,etc., Git Repositories: Git repositories are the location where you can store the… Continue Reading Working with Git commands and Repositories

Install Python, PIP and Boto on Windows server 2016 Date Posted:15-04-2017 Python is a famous scripting language and we will explain on how to install python, pip and boto library on windows server. In this post, we will cover on installing python 3 and pip python installer. Additionally, this post… Continue Reading Install Python, PIP and Boto on Windows server

Learn Find Command and usages Date Posted: 28-03-2017 Find is a command which is used to find files and directories based on various scenario. In this post, we will explain find command and usage with some examples. Find a filename called test.txt on the directory /home/pheonixsolutions. The below command search all… Continue Reading Learn Find Command and usages

Change SSH Default Port and Disable SSH Root Login Date Posted:12-04-2017 By default linux machine SSH port is 22 and root login would be enabled. We will explain on how to change SSH default port and Disable SSH Root login. We need to make sure to add new user which has… Continue Reading Change SSH Default Port and Disable SSH Root Login

Install RainLoop webmail Client on Ajenti Control Panel Date Posted:05-04-2017 Assumption: Linux Host. Ajenti Control panel. If Ajienti control panel is not installed, please follow the post on install Ajenti Control Panel Ajenti-v website package install. Implementation: Create a new website on Ajenti Control Panel : Select Websites under WEB Under Domains Tab,… Continue Reading Install RainLoop webmail Client on Ajenti Control Panel

Install Tomcat server on Ubuntu 16 Date Posted:05-04-2016 Tomcat is a webserver used to deploy java application. We will install tomcat server 8 version and java 1.8 version on Ubuntu Host. Implementation: Before installing tomcat or java, we will perform system upgrades on host. apt-get update apt-get upgrade Install tomcat8… Continue Reading Install Tomcat server on Ubuntu 16

Add Multiple Domains(virtual Hosts) on Apache Ubuntu Date Posted:04-04-2017 Apache popular well known webserver which can be used to serve multiple domains on a single server. This post assumes that apache is already installed and we will deal with how to add multiple domains in it. Assumption: Ubuntu Host Apache… Continue Reading Add Multiple Domains(virtual Hosts) on Apache Ubuntu

Enable mod rewrite module on Apache 2.4 Date Posted:01-04-2017 Mod rewrite is an essential module for .htaccess rules to work on apache server. Follow the below post incase apache is not installed on host. Install Apache 2.4 on Ubuntu Implementation: Login to the server as root. Execute the below command to enable the… Continue Reading Enable mod rewrite module on Apache 2.4 Ubuntu