Posts

Showing posts from January, 2021

Uninstall or Remove MySql 5.7 from Ubuntu 20.04 LTS.

Image
Uninstall or Remove MySql from Ubuntu 18.04 LTS and Ubuntu 20.04 LTS Introduction Hey in this tutorial we are going to tell you how you can completely remove or uninstall MySQL of any version from  Ubuntu 18.04 LTS and Ubuntu 20.04 LTS. In this tutorial we are removing MySQL 5.7 , if you have different MySQL version then you can replace it. Note:- Before uninstalling or removing MySQL make sure you have taken your database backup. Also Read:- How to Install MySQL 8.0 on Ubuntu 20.04 LT S. Also Read:- How to install Mysql 5.6 on Ubuntu 18.04 LTS. Also Read:- How to install MySQL 5.5 on Ubuntu 20.04 LTS. Also Read:- How To Install Linux, Apache, MySQL, PHP (LAMP) on Ubuntu 16.04, Ubuntu 18.04 and Ubuntu 20.04 Prerequisites:- Need root user privileges. Uninstall Mysql Server sudo apt-get purge mysql-server mysql-client mysql-common mysql-server-core-5.7 mysql-client-core-5.7 sudo apt-get remove --purge mysql* sudo apt-get purge mysql* sudo apt-get remove dbconfig-mysql s

Install and setup Laravel 7 on Ubuntu 18.04 and 20.04 LTS

Image
Install and setup Laravel 7 on Ubuntu 18.04 and 20.04 LTS Hey guys, In this blog, I'm writing how to install and configure Laravel 7 on Ubuntu 18.04 LTS and Ubuntu 20.04 LTS from scratch with step by step example. The same instructions would be applied for Ubuntu 20.04 LTS. Before we start installing Laravel 7, make sure that you have already installed LAMP (Linux, Apache, MySQL, and PHP). If not then you can follow the link to install and configure the LAMP stack on your system Link Also Read:- How To Install Linux, Apache, MySQL, PHP (LAMP) on Ubuntu 16.04 Laravel is an open-source PHP framework that is designed for the faster development of MVC web applications in PHP. Before move on you will need to make sure your server meets the following requirements. To do so install all php extension.  Note:- PHP >= 7.2.5 sudo apt install php7.2-common php7.2-cli php7.2-gd php7.2-mysql php7.2-curl php7.2-intl php7.2-mbstring php7.2-bcmath php7.2-imap php7.2-xml php7.2-zip Table of Cont

How to install Mysql 5.6 on Ubuntu 18.04 LTS | vetechno

Image
How to install Mysql 5.6 on Ubuntu 18.04 LTS MySQL is one of the most popular open-source RDMS (relational database management system) which is easy to use, fast, scalable, and an integral part of the popular LEMP and LAMP stacks. In this tutorial, we will show you how to install and secure MySQL 5.6 on an Ubuntu 18.04 LTS Operating Stystem. This same method has been tested on Ubuntu 20.04 server as well. Prerequisites :- Make sure you are logged in as a user with sudo privileges . Also Read:- How to install MySQL 5.5 on Ubuntu 20.04 LTS. Also Read:- Uninstall or Remove MySql 5.7 from Ubuntu 20.04 LTS. How install MySQL 5.6 in Ubuntu 18.04 using terminal? Step1:- First of all you have to add a repository in  /etc/apt/sources. list . Below are the step by step commands that you have to follow for installing MySql 5.6 sudo add-apt-repository 'deb http://kr.archive.ubuntu.com/ubuntu xenial main' Note: - if above repository is not working then use below the repo  sudo add-apt-rep