mysql: reinit the password

You can reinit the password :

1.stop mysql

/etc/init.d/mysql stop

2.start mysql safe :

mysqld_safe --skip-grant-tables &

3.connect to mysql

mysql -u root

4.change the password

mysql> use mysql;
mysql> update user set password=PASSWORD(”YOUR_PASSWORD”) where user=’root’;
mysql> flush privileges;
mysql> quit

5.stop mysql

/etc/init.d/mysql stop

6.start mysql

/etc/init.d/mysql start

Then you can connect to mysql with login root and the new password.


shareimprove this answer

answered Aug 23 ‘16 at 12:11

Seb3W

1464

 

    

Trying to use mysqld_safe resulted in SOCKET file errors. I was able to fix these by manually making the directory and then giving it to the mysql user. See this answer. (Mint 18, mysql 5.7) – Deleet Sep 20 ‘17 at 10:33

原文地址:https://www.cnblogs.com/ilovewindy/p/8191226.html

时间: 2024-10-10 10:07:04

mysql: reinit the password的相关文章

MYSQL更改root password时遇到Access Denied的解决办法

今天在公司虚拟机上装MYSQL之后需要修改root password,然而遇到这样的错误: Access denied for user 'root'@'localhost' (using password:YES) 后来在网上搜了下,找到如下解决办法,测试可用. # /etc/init.d/mysql stop# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &# mysql -u root mysqlmysql&g

MySQL 改动用户password及重置rootpassword

为数据库用户改动password是DBA比較常见的工作之中的一个.对于MySQL用户账户的password改动,有几种不同的方式.推荐的方式使用加密函数来改动password. 本文主要描写叙述了通过几种不同的方式来改动用户password以及mysql root账户password丢失(重置rootpassword)的处理方法. 1.password改动的几种方法 a.能够在创建用户的时候指定password.以及直接使用grant创建用户的时候指定password. 对于已经存在的用户直接使

Mysql找回管理员password

我们使用MYSQL的时候有可能由于种种原因忘记ROOTpassword,假设是那样数据库可能就废掉了.可是今天给大家分享下找回ROOTpassword的方法或者说是在不知道rootpassword的情况下改动ROOTpassword,可是还是建议大家对rootpassword慎重保管,防止一些不必要的麻烦 找回管理员password: [[email protected]~]# service mysqld stop Shutting down MySQL....[确定] [[email pro

windows下新安装的mysql修改root password问题

常用步骤: 1. 在my.ini中的mysqld下添加一行 skip-grant-tables 2.重启mysql后直接进入后,用SQL直接修改password列: C:\> net stop mysqlC:\> net start mysql C:\> mysqlmysql>mysql> use mysqlDatabase changedmysql> UPDATE user SET Password=PASSWORD('newpassword') where USER

mysql forget root password

http://www.rackspace.com/knowledge_center/article/mysql-resetting-a-lost-mysql-root-password MySQL - Resetting a lost MySQL root password The MySQL root password allows full access to the MySQL database and allows for all actions to be undertaken inc

MySQL reset root password

大概步骤如下: 1:停止mysql服务器 2:使用mysqld_safe启动mysql 3:修改root密码 4:退出,重启mysql服务器 步骤一:停止mysql服务器的几个方法如下: 1. 通过 service mysqld stop 来停止mysql 2. 如果不行,则直接使用kill命令停止myqld服务,首先需要使用 ps aux | grep mysql 来查看mysql相关的进程pid,(使用ps aux可以看到pid为第二列),然后使用 kill -9 XXXX 依次杀掉 步骤二

MySQL加入服务、设置password、改动password

修正:加入MySQL服务时,能够不带版本.也就说以下的全部MySQL57能够直接写成MySQL!希望大家注意. MySQL安装好之后,往往还须要再做一些设置! 1.加入MySQL服务: 输入命令cmd 输入命令         cd D:\software\MySQL\mysqllocation\MySQLServer 5.7\bin(此文件夹为MySQL的安装文件夹) 输入命令         d:进入MySQL的bin文件夹 输入命令net start mysql57看是否有MySQL服务 

MYSQL报警:Warning: Using a password on the command line interface can be insecure.

问题描述:执行下面的语句,sql是执行成功了,但是出现了一个报警,报警看上去始终不舒服 mysql -hip -Pport -uuser -ppassword -e "use db;delete from tb;"; Warning: Using a password on the command line interface can be insecure. 解决方法:报警的意思是“在命令行输入密码是不安全的”,解决方法是将用户名和密码写入配置文件,然后在命令行用参数的形式引入文件

windows 下一个mysql password忘记改变

到场mysql简介 my.ini 于[mysqld]以下被加入 skip-grant-tables win+R 热键 进cmd 然后输入命令net stop mysql  最后一点,使文件夹mysql件夹下的bin文件夹 输入命令 mysqld-nt --skip-grant-tables (本地測试提示一个waring 貌似没影响) 再次win+R快捷键  输入cmd 然后输入命令 mysql -u root 回车,此时应该进入mysql了 选择数据库  user mysql; 改动passw