search
HomeDatabaseMysql Tutorial修改MYSQL密码的几种常用方法总结_MySQL

bitsCN.com

首先要声明一点,大部分情况下,修改MySQL是需要有mysql里的root权限的, ­
所以一般用户无法更改密码,除非请求管理员。 ­
­
方法一 ­
使用phpmyadmin,这是最简单的了,修改mysql库的user表, ­
不过别忘了使用PASSWORD函数。 ­
­
方法二 ­
使用mysqladmin,这是前面声明的一个特例。 ­
mysqladmin -u root -p password mypasswd ­
输入这个命令后,需要输入root的原密码,然后root的密码将改为mypasswd。 ­
把命令里的root改为你的用户名,你就可以改你自己的密码了。 ­
当然如果你的mysqladmin连接不上mysql server,或者你没有办法执行mysqladmin, ­
那么这种方法就是无效的。 ­
而且mysqladmin无法把密码清空。 ­
­
下面的方法都在mysql提示符下使用,且必须有mysql的root权限: ­
方法三 ­
mysql> INSERT INTO mysql.user (Host,User,Password) ­
VALUES('%','jeffrey',PASSWORD('biscuit')); ­
mysql> FLUSH PRIVILEGES ­
确切地说这是在增加一个用户,用户名为jeffrey,密码为biscuit。 ­
在《mysql中文参考手册》里有这个例子,所以我也就写出来了。 ­
注意要使用PASSWORD函数,然后还要使用FLUSH PRIVILEGES。 ­
­
方法四 ­
和方法三一样,只是使用了REPLACE语句 ­
mysql> REPLACE INTO mysql.user (Host,User,Password) ­
VALUES('%','jeffrey',PASSWORD('biscuit')); ­
mysql> FLUSH PRIVILEGES ­
­
方法五 ­
使用SET PASSWORD语句, ­
mysql> SET PASSWORD FOR jeffrey@"%" = PASSWORD('biscuit'); ­
拟也必须使用PASSWORD()函数, ­
但是不需要使用FLUSH PRIVILEGES。 ­
­
方法六 ­
使用GRANT ... IDENTIFIED BY语句 ­
mysql> GRANT USAGE ON *.* TO jeffrey@"%" IDENTIFIED BY 'biscuit'; ­
这里PASSWORD()函数是不必要的,也不需要使用FLUSH PRIVILEGES。 ­
­
注意: PASSWORD() [不是]以在Unix口令加密的同样方法施行口令加密。­
MySQL 忘记口令的解决办法­
如果 MySQL 正在运行,首先杀之: killall -TERM mysqld。 ­
启动 MySQL :bin/safe_mysqld --skip-grant-tables & ­
就可以不需要密码就进入 MySQL 了。 ­
然后就是 ­
>use mysql­
>update user set password=password("new_pass") where user="root";­
>flush privileges;­
重新杀 MySQL ,用正常方法启动 MySQL 。 ­
­
注:使用phpmyadmin修改密码时一定要使用加密方式,否则修改后无法进入phpmyadmin!­
建议采用命令行修改密码­
进入mysql后­
mysql>update mysql.user set password=password('new password');­
mysql>flush privileges;­
如果采用phpmyadmin修改密码后无法登陆phpmyadmin,最简单的办法就是重装phpmyadmin,只需删除原来的phpmyadmin文件夹,重新将phpmyadmin得压缩包解压即可,此方法为本人在修改密码无法登陆时,想尽各种办法之后一气之下而想到的绝招,嘿嘿……­

bitsCN.com
Statement
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
vmos在哪开启root权限vmos在哪开启root权限Feb 27, 2024 pm 03:16 PM

VMOS软件向用户提供了便捷的线上虚拟机体验,具备一系列强大的操作和权限管理功能。若用户需要激活VMOS的root权限,必须先安装专用的root工具,并遵循相应的指引完成操作。一旦root权限被激活,用户将享有更高级别的系统控制权,能够自由地安装、卸载应用程序并进行系统级的配置和调整,那么在vmos中究竟如何开启root权限呢,想要了解的玩家们就快来跟着本文详细了解一下吧。vmos怎么开启root?1、启动VMOS后,打开设置→系统设置2、找到开发者模式(如果没开启,需要在关于手机出连续点击版本

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

mysql需要commit吗mysql需要commit吗Apr 27, 2022 pm 07:04 PM

在mysql中,是否需要commit取决于存储引擎:1、若是不支持事务的存储引擎,如myisam,则不需要使用commit;2、若是支持事务的存储引擎,如innodb,则需要知道事务是否自动提交,因此需要使用commit。

See all articles

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

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft