Home Database Mysql Tutorial How to change mysql database password under linux? How to change database password in Linux

How to change mysql database password under linux? How to change database password in Linux

Oct 22, 2018 pm 05:23 PM
linux mysql database change Password

The content of this article is to introduce how to change the mysql database password under Linux? How to change database password in Linux. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

How to modify Mysql under Linux (root password and modify root login permissions

The modified users are listed as root.

1. Know the root password of the original myql database;

①: Enter mysqladmin -u root -p password "new password" at the terminal command line and press Enter, Enter password: /* Enter the original old password*/
②: Log in to the mysql system to modify, mysql -uroot -p Enter password: /* Enter the original password */

mysql>use mysql;
mysql> update user set password=password(“新密码”) where user=‘root’;        /* 密码注意大小写 */
mysql> flush privileges;
mysql> exit;
service mysqld/mysql statusservice mysqld/mysql restart/start
Copy after login
Copy after login

Then use the new password you just entered to log in.

2. I don’t know the original myql root password;
First of all, you must have root permissions on the operating system. If you don’t even have root permissions on the system, consider rooting the system first and then take the following steps. . Similar to logging in to the system in safe mode.

You need to stop the mysql service first. There are two situations. One can use service mysqld stop,

The other is /etc/init.d /mysqld stop

When prompted that mysql has stopped, proceed to the next step Shutting down MySQL. SUCCESS!

Enter on the terminal command line

mysqld_safe --skip-grant-tables &         /* 登录mysql系统 */
Copy after login
Copy after login
Copy after login
Copy after login

Enter mysql to log in to the mysql system

mysql> use mysql;
mysql> UPDATE user SET password=password(“新密码”) WHERE user=‘root’;      /* 密码注意大小写 */
mysql> flush privileges;
mysql> exit;
Copy after login
Copy after login

Restart the mysql service

The new root password will be set successfully.

3. Modify root login permissions

After you modify the root password , this situation is very likely to occur

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

This is because the root login permission is insufficient , the specific modification method is as follows

You need to stop the mysql service first. There are two situations here. One can use service mysqld stop,

The other is /etc/init.d/mysqld stop

When prompted that mysql has stopped, proceed to the next step Shutting down MySQL. SUCCESS!

Enter mysql on the terminal command line to log in to the mysql system

mysqld_safe --skip-grant-tables &         /* 登录mysql系统 */
Copy after login
Copy after login
Copy after login
Copy after login

Then restart the mysql service.


First sentence: Log in as the authorized user root

Second sentence: Select the mysql library

Third sentence: View the mysql library The host value of the user table (that is, the host/IP name for connection access)
The fourth sentence: Modify the host value (add the host/IP address with the wildcard % content), of course you can also directly add the IP address
If there is an error in this step "ERROR 1062 (23000): Duplicate entry '%-root' for key 'PRIMARY'" It means that the record exists, skip this step
The fifth sentence: Refresh the MySQL system permissions related table
Sixth sentence: When checking the user table again, there are modifications. .
Restart the mysql service to complete.

MariaDB sets initialization password and changes password

Method 1:

mysql>use mysql;
mysql>update user set host = ‘%’ where user = ‘root’;
mysql>select host, user from user;
mysql> flush privileges;
mysql> exit;
service mysqld/mysql statusservice mysqld/mysql restart/start
Copy after login
Copy after login

Method 2:

[root@localhost ~]# mysql
MariaDB[(none)]> UPDATE mysql.user SET password = PASSWORD(‘newpassword’) WHERE USER = ‘root’;
MariaDB[(none)]> FLUSH PRIVILEGES;
Copy after login
Copy after login

Method 3:

[root@localhost ~]# mysql
MariaDB[(none)]> SET password=PASSWORD(‘newpassward’);
Copy after login
Copy after login

If root has set a password, use the following method

[root@localhost ~]# mysqladmin -u root password ‘newpassword’
Copy after login
Copy after login



How to modify Mysql under Linux ( Root's password and modification of root login permissions

The modified users are listed as root.

1. Know the root password of the original myql database;

①: In the terminal Enter mysqladmin -u root -p password "new password" on the command line, press Enter password: /* Enter the original old password */

②: Log in to the mysql system to modify, mysql -uroot -p press Enter password: /* Enter the original password */

[root@localhost ~]#mysqladmin -u root -p ‘oldpassword’ password ‘newpassword’
Copy after login
Copy after login

Then use the new password you just entered to log in.


2. I don’t know the original myql root password;

First of all, you must have root permissions on the operating system. If you do not even have root permissions on the system, consider rooting the system first and then take the following steps. It is similar to logging in to the system in safe mode.


You need to first Stop the mysql service. There are two situations here. One can use service mysqld stop,

The other is /etc/init.d/mysqld stop

When prompted that mysql has stopped, proceed Next step: Shutting down MySQL. SUCCESS!

Enter

mysql>use mysql;
mysql> update user set password=password(“新密码”) where user=‘root’;        /* 密码注意大小写 */
mysql> flush privileges;
mysql> exit;
service mysqld/mysql statusservice mysqld/mysql restart/start
Copy after login
Copy after login

in the terminal command line

mysqld_safe --skip-grant-tables &         /* 登录mysql系统 */
Copy after login
Copy after login
Copy after login
Copy after login

Enter mysql to log in to the mysql system

mysql> use mysql;
mysql> UPDATE user SET password=password(“新密码”) WHERE user=‘root’;      /* 密码注意大小写 */
mysql> flush privileges;
mysql> exit;
Copy after login
Copy after login

Restart the mysql service

This way The new root password has been set successfully.

3. Modify root login permissions

After you modify the root password, this situation is likely to occur

ERROR 1045 (28000): Access denied for user ‘root’@‘localhost’ (using password: YES)
Copy after login

This It is because the root login permission is insufficient. The specific modification method is as follows

You need to stop the mysql service first. There are two situations here. One can use service mysqld stop,

The other is /etc/ init.d/mysqld stop

When prompted that mysql has stopped, proceed to the next step Shutting down MySQL. SUCCESS!

Enter on the terminal command line

mysqld_safe --skip-grant-tables &         /* 登录mysql系统 */
Copy after login
Copy after login
Copy after login
Copy after login

Enter mysql to log in to mysql System

mysql>use mysql;
mysql>update user set host = ‘%’ where user = ‘root’;
mysql>select host, user from user;
mysql> flush privileges;
mysql> exit;
service mysqld/mysql statusservice mysqld/mysql restart/start
Copy after login
Copy after login

Then restart the mysql service.

The first sentence: Log in as the authorized user root

The second sentence: Select the mysql library

The third sentence: View the host of the user table in the mysql library Value (the host/IP name for connection access)

Fourth sentence: Modify the host value (add the host/IP address with wildcard % content), of course you can also directly add the IP address

如果这步出错"ERROR 1062 (23000): Duplicate entry ‘%-root’ for key ‘PRIMARY’" 由说明该记录有了,跳过这步

第五句:刷新MySQL的系统权限相关表

第六句:再重新查看user表时,有修改。。

重起mysql服务即可完成。

MariaDB设置初始化密码及修改密码
方法1:

[root@localhost ~]# mysql
MariaDB[(none)]> UPDATE mysql.user SET password = PASSWORD(‘newpassword’) WHERE USER = ‘root’;
MariaDB[(none)]> FLUSH PRIVILEGES;
Copy after login
Copy after login

方法2:

[root@localhost ~]# mysql
MariaDB[(none)]> SET password=PASSWORD(‘newpassward’);
Copy after login
Copy after login

方法3:

[root@localhost ~]# mysqladmin -u root password ‘newpassword’
Copy after login
Copy after login

如果root已经设置过密码,采用如下方法

[root@localhost ~]#mysqladmin -u root -p ‘oldpassword’ password ‘newpassword’
Copy after login
Copy after login

The above is the detailed content of How to change mysql database password under linux? How to change database password in Linux. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

deepseek web version entrance deepseek official website entrance deepseek web version entrance deepseek official website entrance Feb 19, 2025 pm 04:54 PM

DeepSeek is a powerful intelligent search and analysis tool that provides two access methods: web version and official website. The web version is convenient and efficient, and can be used without installation; the official website provides comprehensive product information, download resources and support services. Whether individuals or corporate users, they can easily obtain and analyze massive data through DeepSeek to improve work efficiency, assist decision-making and promote innovation.

How to install deepseek How to install deepseek Feb 19, 2025 pm 05:48 PM

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

How to solve the permissions problem encountered when viewing Python version in Linux terminal? How to solve the permissions problem encountered when viewing Python version in Linux terminal? Apr 01, 2025 pm 05:09 PM

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

BITGet official website installation (2025 beginner's guide) BITGet official website installation (2025 beginner's guide) Feb 21, 2025 pm 08:42 PM

BITGet is a cryptocurrency exchange that provides a variety of trading services including spot trading, contract trading and derivatives. Founded in 2018, the exchange is headquartered in Singapore and is committed to providing users with a safe and reliable trading platform. BITGet offers a variety of trading pairs, including BTC/USDT, ETH/USDT and XRP/USDT. Additionally, the exchange has a reputation for security and liquidity and offers a variety of features such as premium order types, leveraged trading and 24/7 customer support.

Get the gate.io installation package for free Get the gate.io installation package for free Feb 21, 2025 pm 08:21 PM

Gate.io is a popular cryptocurrency exchange that users can use by downloading its installation package and installing it on their devices. The steps to obtain the installation package are as follows: Visit the official website of Gate.io, click "Download", select the corresponding operating system (Windows, Mac or Linux), and download the installation package to your computer. It is recommended to temporarily disable antivirus software or firewall during installation to ensure smooth installation. After completion, the user needs to create a Gate.io account to start using it.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Ouyi okx installation package is directly included Ouyi okx installation package is directly included Feb 21, 2025 pm 08:00 PM

Ouyi OKX, the world's leading digital asset exchange, has now launched an official installation package to provide a safe and convenient trading experience. The OKX installation package of Ouyi does not need to be accessed through a browser. It can directly install independent applications on the device, creating a stable and efficient trading platform for users. The installation process is simple and easy to understand. Users only need to download the latest version of the installation package and follow the prompts to complete the installation step by step.

Ouyi Exchange Download Official Portal Ouyi Exchange Download Official Portal Feb 21, 2025 pm 07:51 PM

Ouyi, also known as OKX, is a world-leading cryptocurrency trading platform. The article provides a download portal for Ouyi's official installation package, which facilitates users to install Ouyi client on different devices. This installation package supports Windows, Mac, Android and iOS systems. Users can choose the corresponding version to download according to their device type. After the installation is completed, users can register or log in to the Ouyi account, start trading cryptocurrencies and enjoy other services provided by the platform.

See all articles