Home > Database > phpMyAdmin > body text

phpmyadmin changes the default password (detailed picture and text explanation)

藏色散人
Release: 2020-11-25 15:03:31
forward
4531 people have browsed it

Below, phpmyadmin uses the tutorial column to introduce to you how to change the default password of phpmyadmin (detailed pictures and texts). I hope it will be helpful to friends in need!

phpmyadmin changes the default password (detailed picture and text explanation)

set password=password('hello');//root密码修改为hello
Copy after login

phpmyadmin changes the default password (detailed picture and text explanation)

User information in mysql is stored in the user table of the system database mysql:

phpmyadmin changes the default password (detailed picture and text explanation)

Create user
Grammar form:

create  user  ‘用户名’@’允许其登录的地址’  identified  by  ‘密码’;
Copy after login

Description:
1. When creating a user, you must also specify the address at which the user can log in.
Where "%" represents "any address".
2. After the user is created, a record is automatically added to the user table of mysql, but the user does not have permission yet.

Delete user
drop user 'username'@'address that allows login';

Modify user password
Modify your own password: set password = password( 'New password');
Modify other people's passwords (must have permission to modify):
set password for 'Username'@'address that allows them to log in' = password('new password');

The above is the detailed content of phpmyadmin changes the default password (detailed picture and text explanation). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:jianshu.com
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!