Home > Database > Mysql Tutorial > 为新安装的RHEL AS设定MySQL初始root密码_MySQL

为新安装的RHEL AS设定MySQL初始root密码_MySQL

WBOY
Release: 2016-06-01 13:59:54
Original
1007 people have browsed it

RHEL

1.我们在安装RHEL AS系统时默认安装了MySQL数据库。这种安装方法下,数据库最高帐户root的初始密码是空。

由于部分客户安全意识不太强,接到系统以后直接启用数据库,留下安全隐患。

所以要求以后技术部在处理完RHEL AS系统的安装之后,一定要设定MySQL数据库的初始密码。

方法如下:

在系统安装完毕之后登入系统,使用SETUP程序,修改系统默认的服务项,开启mysqld服务,重启服务器。

或者/etc/init.d/mysqld start,临时开启mysql服务。

输入命令:/usr/bin/mysqladmin -u root -p password ******(新密码,这里是明文显示,规定采用与系统登录密码相同的设定规则),回车以后会提示enter password,这里是要求输入原密码,因为初始密码为空,所以直接回车就可以了。

验证:

1.任意路径下输入mysql -u root -p,回车,提示输入密码,输入设定的新密码及可进入数据库管理器。

使用exit或者quit即可从数据库管理程序退出到系统。

2.修改config.inc.php文件

3.在Mysql环境下,你可以使用以下语句进行设置密码: (未测)

a.insert into user(host,user,password) values('%','user_name',password("your password");

b.set password for user_name = password("your password")

以上两种方法都必须进行重载授权表.

c.当然你也可以在创建一个用户时直接设置密码,grant语句将为你自动加密口令.

grant all on *.* to user_name@% identified by "your password";

另外你也可以在shell环境下用mysqladmin程序来设置密码

mysqladmin -u root password "your password"

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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template