Install MySQL in Ubuntu 18.04 (Graphical Tutorial)

Install MySQL in Ubuntu 18.04 (Graphical Tutorial)

Tip: The following operations are all performed under root privileges.

# Check if MySQL is installed:

dpkg -l | grep mysql

# Install MySQL:

apt install mysql-server

After the installation is complete, you can use the following command to check whether the installation is successful:

netstat -tap | grep mysql

After checking with the above command, if you see that the mysql socket is in the LISTEN state, it means the installation is successful.

You can log in to the MySQL database using the following command:

mysql -u root -p

-u means selecting the login username, -p means the login user password. Currently, the MySQL database has no password. Simply press Enter at Enter password: to enter the MySQL database.

Then use show databases; to view all current databases.

Next, in order to ensure the security and normal operation of the database, the database is initialized. This initialization operation involves the following 5 steps.

(1) Install the verification password plug-in.

(2) Set a unique password for the root administrator in the database.

(3) Then delete the anonymous account and use the root administrator to log in to the database remotely to ensure the security of the business running on the database.

(4) Delete the default test database and cancel a series of access permissions for the test database.

(5) Refresh the authorization list to make the initialization settings take effect immediately.

For the above database initialization steps, I made simple comments next to the output information below.

root@ubuntu-virtual-machine:~#mysql_secure_installation

Securing the MySQL server deployment.

Connecting to MySQL using a blank password.

VALIDATE PASSWORD PLUGIN can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD plugin? #Do you want to install the verification password plugin?

Press y|Y for Yes, any other key for No: N # I choose N here
Please set the password for root here.

New password: #Enter the database password to be set for the root administrator

Re-enter new password: #Enter the password again

By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

Remove anonymous users? (Press y|Y for Yes, any other key for No) : y #Delete anonymous accounts
Success.

Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : N #Disallow root administrators from logging in remotely. I did not prohibit it here.

... skipping.
By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.

Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y #Delete the test database and cancel its access permissions
- Dropping test database...
Success.

- Removing privileges on test database...
Success.

Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y #Refresh the authorization table to make the initialization settings take effect immediately
Success.

All done!

Check the mysql service status:

systemctl status mysql

The following results show that the MySQL service is running normally:

Use the mysql -u root -p command again, enter the password you just set at Enter password:, press Enter, and you can enter the MySQL database.

Use the use mysql; command to open the database named mysql and display the tables of the current database: show tables; Query the data in the user table: select * from user; (the user table contains all account information of the mysql database)

Now configure mysql to allow remote access. First edit the /etc/mysql/mysql.conf.d/mysqld.cnf configuration file:

vim /etc/mysql/mysql.conf.d/mysqld.cnf

Comment out bind-address = 127.0.0.1

Save and exit, then enter the MySQL database and execute the authorization command:

mysql -u root -p
mysql> grant all on *.* to root@'%' identified by 'your password' with grant option;
mysql> flush privileges; # Refresh privileges mysql> exit

Then execute the exit command to exit the MySQL service, and then execute the following command to restart MySQL:

systemctl restartmysql

Now you can use the Navicat graphical tool in Windows to remotely connect to the MySQL database in Ubuntu and enter the password for the remote permission you just authorized.

Here is another share: Navicat for MySQL 10.1.7 installation package

Link: https://pan.baidu.com/s/12P1BcvQsRetBY0jGIvwILw&shfl=shareset Extraction code: 8bft

OK, now the installation of MySQL in Ubuntu 18.04 has been completed.

During the operation I encountered the following error:

E: Unable to obtain lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?

Solution, refer to the article: https://www.jb51.net/article/172460.htm

Summarize

The above is the method of installing MySQL under Ubuntu 18.04 introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Tutorial on installing mysql5.7.23 on Ubuntu 18.04
  • Install MySQL 5.7 on Ubuntu 18.04
  • Ubuntu18.04 installation mysql8.0.11 graphic tutorial
  • How to install MySQL on Ubuntu 18.04 (linux)
  • Ubuntu 18.0.4 installs mysql and solves ERROR 1698 (28000): Access denied for user ''''root''''@''''localhost'''

<<:  A Brief Analysis of MySQL PHP Syntax

>>:  Analysis of Context application scenarios in React

Recommend

JavaScript object built-in objects, value types and reference types explained

Table of contents Object Object Definition Iterat...

Mysql solution to improve the efficiency of copying large data tables

Preface This article mainly introduces the releva...

Introduction and tips for using the interactive visualization JS library gojs

Table of contents 1. Introduction to gojs 2. Gojs...

avue-crud implementation example of multi-level complex dynamic header

Table of contents Preface Background data splicin...

MySQL 5.6.37 (zip) download installation configuration graphic tutorial

This article shares the download, installation an...

Basic syntax of MySQL index

An index is a sorted data structure! The fields t...

Solution to the problem of passing values ​​between html pages

The first time I used the essay, I felt quite awkw...

Summary of the unknown usage of "!" in Linux

Preface In fact, the humble "!" has man...

Solution to the CSS height collapse problem

1. High degree of collapse In the document flow, ...

Detailed usage of docker-maven-plugin

Table of contents Docker-Maven-Plugin Maven plugi...

jQuery plugin to implement dashboard

The jquery plug-in implements the dashboard for y...

Element sample code to implement dynamic table

Table of contents 【Code background】 【Code Impleme...