第一步:登陆linux,在终端登陆mysql #mysql -u root -p 第二步:查询系统用户列表并进行添加用户 mysql>select host,user,password from mysql.user; mysql>grant all on *.* to 用户名@"%" identified by "您的密码"或mysql>grant all privileges on *.* to 用户名@域 identified by &quo
1.停止mysql 服务 /etc/init.d/mysqld stop 2.启动mysql服务跳过授权表并在后台运行 /etc/init.d/mysqld start -u root --skip-grant-tables & 3.用root空密码登录 mysql -u root 4.修改用户名密码 use mysql update user set password=password('your password') where user='root' flush privileges
mysql 忘记了root的password的时候的解决步骤, 1: cd /etc/mysql/(进入mysql的配置文件夹) 2:vim my.cnf \skip-grant-tables(进入mysql的配置文件,在配置文件里增加跳过"授权表"的命令) 3:/etc/init.d/apache restart(重新启动mysql就能够了) 4:命令行输入mysql(直接进入数据库) 5:然后进入mysql->user->(update user set Passwro