MAGENTO 2 MIGRATION PROCESS IN UBUNTU
In this blog let us learn how to do Magento 2 Migration process in Ubuntu First make sure you have required backups from your Magento 2 instance that you want to migrate. Install the Required Software in New Server Step 1: Install Apache2 Apache is available in Ubuntu’s default software repositories. For this reason, we’ll start by updating the local package index for the latest changes. We need to install Apache web server. Connect to your server using ssh protocol with root access and run this command: sudo apt update sudo apt update sudo apt install apache2 Once installed, you can check the installed Apache version with the following command: sudo apache2ctl –v To enable auto startup for apache, use this command: systemctl is-enabled apache2 Step 2: Install MySQL and…