Installation and use of mysql on Ubuntu (general version)

Installation and use of mysql on Ubuntu (general version)

Regardless of which version of Ubuntu, installing the MySQL database is basically the same. The following are the specific installation steps:

1. Open the terminal and obtain root privileges

2. Enter in the terminal:

apt-get install mysql-server
apt-get install mysql-client
apt-get install libmysqlclient-dev

During the installation process, you need to enter "Y" to confirm where necessary.

After executing the above three commands, if you want to check whether MySQL is installed successfully, you can enter the following command to check:

netstat -tap | grep mysql

If the following figure appears, the installation is successful.

3. Realize remote control of mysql

(1) Edit the file /etc/mysql/mysql.conf.d/mysqld.cnf and comment out bind-address = 127.0.0.1

As shown in the following figure:

(2) Execute the authorization command under MySQL (authorize any remote computer to log in to the database)

Type mysql -uroot -p yourpassword in the terminal

After entering mysql, type the following command:

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'your password' WITH GRANT OPTION;

Then refresh the configuration information and type the following command in the terminal:

flush privileges;

When you are finished, use exit to exit mysql.

4. After completing the above steps, restart the MySQL service. The command is as follows:

service mysql restart

After completing the above four steps, the MySQL database can basically be used normally. I hope this article was helpful to you!

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Ubuntu16.04 builds php5.6 web server environment
  • How to build nfs service in ubuntu16.04
  • How to modify the time zone and time in Ubuntu system
  • How to detect Ubuntu version using command line
  • Detailed explanation of how to connect node to mongodb database [Alibaba Cloud Server Environment Ubuntu]
  • Detailed explanation of installing Python 3.7 and pip3 in Ubuntu 16.04 and switching to the default version
  • Tutorial on installing mysql5.7.23 on Ubuntu 18.04
  • Ubuntu 18.04 installs mysql 5.7.23
  • Install mysql5.7 on Ubuntu 18.04
  • Introduction to Ubuntu PostgreSQL installation and configuration

<<:  Docker deployment of Kafka and Spring Kafka implementation

>>:  Reasons and solutions for not being able to detect array changes in Vue2

Recommend

Sharing of experience on repairing MySQL innodb exceptions

A set of MySQL libraries for testing. The previou...

MySQL study notes on handling duplicate data

MySQL handles duplicate data Some MySQL tables ma...

Solution to the 404/503 problem when logging in to TeamCenter12

TeamCenter12 enters the account password and clic...

Pure CSS to achieve hover image pop-out pop-up effect example code

Implementation principle The main graphics are co...

How to deploy HTTPS for free on Tencent Cloud

Recently, when I was writing a WeChat applet, the...

Solve the problem of docker pull image error

describe: Install VM under Windows 10, run Docker...

Two ways to connect WeChat mini program to Tencent Maps

I've been writing a WeChat applet recently an...

Vue+express+Socket realizes chat function

This article shares the specific code of Vue+expr...

Vue opens a new window and implements a graphic example of parameter transfer

The function I want to achieve is to open a new w...

Vue implements a draggable tree structure diagram

Table of contents Vue recursive component drag ev...

Analyzing the troublesome Aborted warning in MySQL through case studies

This article mainly introduces the relevant conte...

Detailed explanation of Linux file operation knowledge points

Related system calls for file operations create i...

Pycharm2017 realizes the connection between python3.6 and mysql

This article shares with you how to connect pytho...