How to install and configure MySQL and change the root password

How to install and configure MySQL and change the root password

1. Installation

apt-get install mysql-server requires setting an account and password

apt-get isntall mysql-client
apt-get libmysqlclient-dev

2.sudo netstat -tap | grep mysql to check whether the installation is successful

root@xyz:~# netstat -tap | grep mysql
tcp6 0 0 [::]:mysql [::]:* LISTEN 7510/mysqld --> Installation successful

2. Set up MySQL remote access

1. Edit the mysql configuration file and comment out bind-address = 127.0.0.1

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

2. Use root to enter the mysql command line and execute the following two commands. In the example, the root account password of mysql is: root

grant all on *.* to root@'%' identified by 'root' with grant option;
flush privileges;

3. Restart mysql

/etc/init.d/mysql restart

3. Various methods to modify MySQL root password

Method 1: Use the SET PASSWORD command

  mysql -u root
  mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');

Method 2: Using mysqladmin

  mysqladmin -u root password "newpass"

If the root password has been set, use the following method

 mysqladmin -u root password oldpass "newpass"

Method 3: Use UPDATE to edit the user table directly

mysql -u root
  mysql> use mysql;
  mysql> UPDATE user SET Password = PASSWORD('newpass') WHERE user = 'root';
  mysql> FLUSH PRIVILEGES;
   When you lose the root password, you can use mysqld_safe --skip-grant-tables &
  mysql -u root mysql
  mysql> UPDATE user SET password=PASSWORD("new password") WHERE user='root';
  mysql> FLUSH PRIVILEGES;

Summarize

The above is the method of Mysql installation, configuration tuning and root password modification 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!

You may also be interested in:
  • MySQL SQL statement performance tuning simple example
  • 10 ways to optimize MySQL performance
  • Two important parameters in Mysql optimization and tuning: table_cache and key_buffer
  • MySQL slow query search and tuning test
  • How to check and tune mysql performance
  • Analyze MySQL replication and tuning principles and methods

<<:  Detailed explanation of using Nginx reverse proxy to solve cross-domain problems

>>:  How to implement a lucky wheel game in WeChat applet

Recommend

A comprehensive understanding of Vue.js functional components

Table of contents Preface React Functional Compon...

Modify the maximum number of mysql connections and configuration files in docker

1. Find the mysql image docker ps 2. Enter the mi...

How to query the intersection of time periods in Mysql

Mysql query time period intersection Usage scenar...

Html/Css (the first must-read guide for beginners)

1. Understanding the meaning of web standards-Why...

Example analysis of the impact of MySQL index on sorting

This article uses examples to illustrate the impa...

Implementation of Grid common layout

No gaps on both sides, gaps between each column w...

Table td picture horizontally and vertically centered code

Html code: Copy code The code is as follows: <t...

Detailed explanation of MySQL database (based on Ubuntu 14.0.4 LTS 64 bit)

1. Composition and related concepts of MySQL data...

React Class component life cycle and execution order

1. Two ways to define react components 1. Functio...

Detailed explanation of common methods of JavaScript arrays

Table of contents Common array methods pop() unsh...

Several methods to clear floating (recommended)

1. Add an empty element of the same type, and the...

Detailed explanation of how to configure Nginx web server sample code

Overview Today we will mainly share how to config...

How to quickly build your own server detailed tutorial (Java environment)

1. Purchase of Server 1. I chose Alibaba Cloud...

Differences between FLOW CHART and UI FLOW

Many concepts in UI design may seem similar in wo...