Two ways to reset the root password of MySQL database using lnmp

Two ways to reset the root password of MySQL database using lnmp

The first method: Use Junge's one-click script to modify the MYSQL database password in the LNMP environment

One-click scripts are certainly very convenient. Specifically execute the following commands:

wget http://soft.vpser.net/lnmp/ext/reset_mysql_root_password.sh
sh reset_mysql_root_password.sh

Convenient, right?

The second method: Modify through commands, as follows:

a. Stop MySQL service

Execute: /etc/init.d/mysql stop

b. Skip verification and start MySQL

/usr/local/mysql/bin/mysqld_safe –skip-grant-tables >/dev/null 2>&1 &

Then:

mysql mysql -uroot //Login to mysql> UPDATE user SET Password=PASSWORD('new password') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit

Then restart mysql

/etc/init.d/mysql start

Summarize

The above are two methods that I introduced to you about how to use lnmp to reset the root password of the MySQL database. I hope it will be helpful to you. If you have any questions, please leave me a message and I 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:
  • The best solution for resetting the root password of MySQL 8.0.23
  • How to reset the root password in Linux mysql-5.6
  • The easiest way to reset mysql root password
  • Solve the problem of resetting the Mysql root user account password
  • Complete steps to reset the root user password in mysql8
  • How to reset the root password in mysql8.0.12
  • MySQL/MariaDB Root Password Reset Tutorial
  • Tutorial on resetting the root password of Mac MySQL
  • How to reset MySQL root password under Windows
  • How to Reset MySQL or MariaDB Root Password in Linux
  • Tutorial on resetting the root password of MySQL under CentOS
  • How to reset MySQL root password

<<:  How to configure two-way certificate verification on nginx proxy server

>>:  Analysis of Vue element background authentication process

Recommend

Create a virtual environment using venv in python3 in Ubuntu

1. Virtual environment follows the project, creat...

Markup Language - Anchor

Previous: Markup Language - Phrase Elements Origin...

Zabbix monitors mysql instance method

1. Monitoring planning Before creating a monitori...

Deeply understand how nginx achieves high performance and scalability

The overall architecture of NGINX is characterize...

WeChat Mini Programs Achieve Seamless Scrolling

This article example shares the specific code for...

Detailed explanation of MySQL 8.0 password expiration policy

Starting from MySQL 8.0.16, you can set a passwor...

4 ways to avoid duplicate insertion of data in Mysql

The most common way is to set a primary key or un...

How to define input type=file style

Why beautify the file control? Just imagine that a...

Learn MySQL database in one hour (Zhang Guo)

Table of contents 1. Database Overview 1.1 Develo...

Teach you about react routing in five minutes

Table of contents What is Routing Basic use of pu...

Implementation of building custom images with Dockerfile

Table of contents Preface Introduction to Dockerf...

Tips to prevent others from saving as my web page and copying my site

Nowadays, copying websites is very common on the I...

Detailed explanation of MySQL string concatenation function GROUP_CONCAT

In the previous article, I wrote a cross-table up...

CSS Tutorial: CSS Attribute Media Type

One of the most important features of a style she...