|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
欢迎大家来到仓酷云论坛!1.修正MySQL的登录设置:
#vi/etc/my.cnf
在[mysqld]的段中加上一句:skip-grant-tables
比方:
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
skip-grant-tables
保留而且加入vi。
2.从头启动mysqld
#/etc/init.d/mysqlrestart
StoppingMySQL:[OK]
StartingMySQL:[OK]
3.登录并修正MySQL的root暗码
#/usr/bin/mysql
WelcometotheMySQLmonitor.Commandsendwith;org.
YourMySQLconnectionidis3toserverversion:3.23.56
Typehelp;orhforhelp.Typectoclearthebuffer.
mysql>USEmysql;
Readingtableinformationforcompletionoftableandcolumnnames
Youcanturnoffthisfeaturetogetaquickerstartupwith-A
Databasechanged
mysql>UPDATEuserSETPassword=password(new-password)WHEREUser=root;
QueryOK,0rowsaffected(0.00sec)
Rowsmatched:2Changed:0Warnings:0
mysql>flushprivileges;
QueryOK,0rowsaffected(0.01sec)
mysql>quit
Bye
4.将MySQL的登录设置修正返来
#vi/etc/my.cnf
将方才在[mysqld]的段中加上的skip-grant-tables删除
保留而且加入vi。
5.从头启动mysqld
#/etc/init.d/mysqlrestart
StoppingMySQL:[OK]
StartingMySQL:[OK]
欢迎大家来到仓酷云论坛! |
|