1

可能重复:
如何在 MySQL 中更改 root 用户的密码?

我对 ec2 实例具有 root 访问权限,但我不知道我需要的 mysql root 密码是什么。我将如何 1) 找到这个?或2)重新安装mysql并给自己一个root密码?

4

1 回答 1

1
$ sudo service mysql stop
$ /usr/bin/mysqld_safe --skip-grant-tables &
mysql -h localhost
> use mysql
> update user set password = password('') where user = 'root' and host='localhost';
> quit
$ sudo service mysql start
$ mysql -u root
Welcome to the MySQL monitor.  Commands end with ; or \g.
于 2012-05-29T00:46:05.737 回答