Introduction: osTicket is a free and open source ticketing system for Linux. It is written in PHP and uses MySQL/MariaDB as a database backend. It also supports MySQL and PostgreSQL. osTicket is a helpdesk solution suitable for organizations of all sizes. It is excellent for managing your customer inquiries created… Continue Reading How to install osTicket on ubuntu 20.04

We have been roaming around to establish VPN connection between our network to AWS network. There are servers which are in private network which needs to be accessed from our local network. Here comes the post on how to establish a VPN connection between your network to other network Prerequisites:… Continue Reading Install Openvpn on Linux|Configure VPN between network

Introduction: In this section, we are going to see how to create a VM using the Citrix Xen center tool. In the xen center tool we can able to create the VM manually with our custom specifications. Prerequisites: Procedure: Click next to continue Click next to continue. 15. To apply… Continue Reading How to create VM using Citrix xencenter

Introduction In this article, we will migrate the WordPress website from the source domain to the subdomain. Prerequisite Procedure Step 1: Login into the source domain server and find the document root on the domain configuration file(depends on the webserver installed on server). $ sudo cd /etc/<webserver>/sites-available/domain.conf Step 2: Go to… Continue Reading How to do WordPress website migration from domain to subdomain

This blog will help you to install and configure PHP with Nginx on centos7 Prerequisite Centos version 7, User with Sudo privileges Procedure Step 1: Install the EPEL repository $ sudo yum install epel-release Step 2: Install and start Nginx Run the following command to install nginx, $ sudo yum… Continue Reading How to install and configure PHP with Nginx on centos7

The following guide will help you get started with installing python3 and pip3 on Ubuntu 16.04. First install python 3 from the “deadsnakes” repository from the Python Package Accesories ( PPA ) Add the package to repository $ sudo add-apt-repository ppa:deadsnakes/ppa Update the repository $ sudo apt-get update Now Install… Continue Reading How to install python3 and pip3 in Ubuntu 16.04

Prerequisite User with Sudo privileges, Ubuntu version 20.04. Procedure Login to the Ubuntu server & follow the below steps to Configure Apache with PHP-FPM handler. Ensure that all the packages you have installed on your server are up to date, by running the following command you can find it. $… Continue Reading How to Configure Apache with PHP-FPM handler in ubuntu 20.04

Error occurred while listing the files after connecting to the FTP account 2. The error is due to the improper passive port range configuration in /etc/vsftpd.conf file. 3. Therefore, open the port range 64000-64321 in /etc/vsftpd.conf file. 4. Add below 2 lines in /etc/vsftpd.conf file: pasv_min_port=64000 pasv_max_port=64321 5. At last, restart the service VsFTPd. # systemctl… Continue Reading 227 entering passive mode in vsFTPd- ftp: connect: resource temporarily unavailable

Introduction If you have the “Mount Backup Drive as Needed” option enabled, cPanel reads the /etc/fstab configuration and looks for a configuration that matches the backup directory that you have configured in the Backup Configuration interface of WHM. It then uses the configuration from the /etc/fstab file to mount the disk that is configured to mount… Continue Reading How to use the automount feature with cPanel backups

Please follow the below steps to mirror a repository. 1) Create a new private repo in the destination GitHub account with the same repo name or different name.2) Open Terminal3) Create a bare clone of the repository in the terminal with the below command. 4) Mirror-push to the new repository with… Continue Reading Mirroring a Repository