installing MySQL on Ubuntu is actually easier than installing Windows, just enter the password once in the middle of the following commands, and the other operations are automatically completed. 1. Sudo apt-get install mysql-server 2. Apt-get Isntall mysql-client
3. sudo apt-get install Libmysqlclient-dev
After installing MySQL, check if the installation was successful:
sudo netstat-tap | grep mysql
After the test is done, it's a simple quiz.
Mysql-u root-p
The other operation commands are the same as usual.
Here's how to export a database file and import a database file:
First, export the database with the mysqldump command (note the installation path of MySQL, which is the path to this command):
1. Export Data and table structure:
Mysqldump-u User name-p password database name > database name. sql
$/USR/MYSQLDUMP-UROOT-P ABC > Abc.sql
You will be prompted to enter your password after hitting enter
2. Export table structure only
Mysqldump-u User name-p password-d database name > database name. sql
$/usr/mysqldump-uroot-p-D ABC > Abc.sql
NOTE:/usr/---> MySQL data directory
Second, import the database
1, first build empty database
Mysql>create database ABC;
2. Import the database
Method One:
(1) Select database
Mysql>use ABC;
(2) Setting the database encoding
Mysql>set names UTF8;
(3) Import data (note the path to the SQL file)
mysql>source/home/abc/abc.sql;
Method Two:
Mysql-u User name-p password database name < database name. sql
#mysql-UABC_F-P ABC < Abc.sql
Ubantu How to install MySQL database, and how to back up SQL files and run SQL Files!