關閉方法:
service mysqld stop
或
killall -TERM mysqld
接下來,重新開啟mySQL,請額外加上指令:
/usr/bin/safe_mysqld --skip-grant-tables &
(請注意執行程式的路徑,請替換成你的程式路徑)
然后启动mySQL,在命令模式下键入:mysql
# mysql (這個也是,如果直接執行找不到程式,請打完整路徑)
>use mysql
>update user set password=password("新密碼") where user="root";
>flush privileges;
>exit;
關閉現在執行的mySQL,重新正常啟動mySQL。
启动mysql命令:
mysql -h localhost -uroot -p
password
->
service mysqld stop
或
killall -TERM mysqld
接下來,重新開啟mySQL,請額外加上指令:
/usr/bin/safe_mysqld --skip-grant-tables &
(請注意執行程式的路徑,請替換成你的程式路徑)
然后启动mySQL,在命令模式下键入:mysql
# mysql (這個也是,如果直接執行找不到程式,請打完整路徑)
>use mysql
>update user set password=password("新密碼") where user="root";
>flush privileges;
>exit;
關閉現在執行的mySQL,重新正常啟動mySQL。
启动mysql命令:
mysql -h localhost -uroot -p
password
->
关键字词:
相关文章
- mysql slave不能同步Last_SQL_Error Error Duplicate entry
- MySQL 提示Incorrect key file for table 'xx'; try to 出错无法打开
- MySQL Got error 28 from storage engine 解决办法
- 高可用的Mysql双机热备(Mysql_HA)
- mysql 对数据表的结构和数据进行复制
- mysql数据库表的错误 got error 28 from storage engine
- MySQL存储过程中使用动态行转列
- 查看运行MySQL中的语句(查询正在执行的sql)
- mysql安装图解 mysql图文安装教程(详细说明)
- Can't connect to MySQL server on localhost (10061)解决方法