Home > php教程 > PHP源码 > phpmyadmin设置密码(phpmyadmin密码修改)

phpmyadmin设置密码(phpmyadmin密码修改)

WBOY
Release: 2016-06-08 17:23:46
Original
1318 people have browsed it

在phpmyadmin中密码设置分为三种模式,分别为:cookie授权模式 、config授权模式、http授权模式,下面我来介绍这三种模式的配置方法。

<script>ec(2);</script>


phpmyadmin大家可以官方下载,然后再在目录中修改config.cfg.php

一、使用cookie授权模式

将'auth_type'改为'cookie',然后修改'blowfish_secret'用一个任意字符串作为cookie的加密字符串,如果没有加密钥匙,系统会显示"配置文件现在需要绝密的短语密码(blowfish_secret) " ,配置文件如下:

$cfg['Servers'][$i]['auth_type'] = 'cookie';

$cfg['blowfish_secret'] = '44e2f5aece2855.93921574';

修改完毕后,登录窗口入下

http授权模式的web登陆页面

二、使用config授权模式

config需要这几个参数:

$cfg['Servers'][$i]['auth_type'] = 'config'; //授权模式

$cfg['Servers'][$i]['user'] = 'root'; //mysql登陆用户

$cfg['Servers'][$i]['password'] = '12345'; //mysql登陆用户密码

三、用http授权模式

$cfg['Servers'][$i]['auth_type'] = 'http';

http授权模式的登陆窗口

注意事项:如果mysql服务器端采用了4.1以上版本,而客户端连接用的是mysql4.1一下版本,对用户设置密码时注意使用OLD_PASSWORD函数,举例:

mysql > SET PASSWORD = OLD_PASSWORD('12345')

mysql > /G

phpmyadmin密码忘了怎么办


1、关闭mysql服务

# service mysql stop


如果提示mysql: unrecognized service这样的错误提示。

先查看查找mysql.server,使用:find / -name "mysql.server"


再使用/usr/local/mysql/share/mysql/mysql.server stop命令关闭mysql。


2、 安全模式启动mysql跳过授权表

先查看mysqld_safe程序,可以使用find / -name "mysqld_safe"命令来查找,默认都是在mysql安装目录下。

 #find / -name "mysqld_safe"


安全模式启动mysql跳过授权表


3、使用root账户登陆mysql修改密码重新授权

新建立一个连接登陆云服务器


1)先输入mysql -u root命令登陆mysql

2)在输入update mysql.user set password=PASSWORD('123456789') where User='root'; 更新mysql密码为:123456789

3)quit 退出mysql

4、重启mysql服务


1)killall mysqld 结束所有mysql进程

2)service mysql start 启动mysql

3)mysql -u root –p 回车,提示输入密码,则为您刚刚重置的mysql密码。

Related labels:
source:php.cn
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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template