MySQL Database server install in Android using GNURoot Debian

What is MySQL ?

MySQL is anopen-source relational database management system Its name is a combination of "My", the name of co-founder Michael Widenius's daughter, and "SQL", the abbreviation for Structured Query Language. The MySQL development project has made itssource code available under the terms of theGNU General Public License, as well as under a variety of proprietary agreements. MySQL was owned and sponsored by a single for-profit firm, the Swedish company MySQL AB, now owned by Oracle Corporation. For proprietary use, several paid editions are available, and offer additional functionality.


How to install in Android

Open GNURoot debian terminal and type following command

$ apt update
$ apt install mysql-server

To start mysql database

$ service mysql start
$ mysql -u <username> -p

To stop mysql server

$ service mysql stop

Comments