|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们!第一步:(停失落正在运转的mysql)
[root@CentOs5~]#servicemysqldstop
StoppingMySQL:[OK]
第二步:利用“--skip-grant-tables”参数从头启动mysql
[root@CentOs5~]#mysqld_safe--skip-grant-tables&
[1]23810
[root@CentOs5~]#Startingmysqlddaemonwithdatabasesfrom/var/lib/mysql
第三步:用帐号登录mysql
[root@CentOs5~]#mysql-uroot
WelcometotheMySQLmonitor.Commandsendwith;org.
YourMySQLconnectionidis1
Serverversion:5.0.77Sourcedistribution
Typehelp;orhforhelp.Typectoclearthebuffer.
第四步:改动用户数据库
mysql>usemysql
Readingtableinformationforcompletionoftableandcolumnnames
Youcanturnoffthisfeaturetogetaquickerstartupwith-A
Databasechanged
第五步:修正暗码,记得暗码要用password()函数举行加密,必定不要健忘!!!
mysql>updateusersetpassword=password(admin123)whereuser=root;
QueryOK,1rowaffected(0.04sec)
Rowsmatched:1Changed:1Warnings:0
第六步:革新权限表
mysql>flushprivileges;
QueryOK,0rowsaffected(0.00sec)
第七步:加入mysql
mysql>quit
Bye
第八步:对mysql举行重启
[root@CentOs5~]#servicemysqldrestart;
STOPPINGserverfrompidfile/var/run/mysqld/mysqld.pid
10042113:44:03mysqldended
StoppingMySQL:[OK]
StartingMySQL:[OK]
[1]+Donemysqld_safe--skip-grant-tables
第九步:用变动过的暗码从头登录便可。
[root@CentOs5~]#mysql-uroot-p
Enterpassword:admin123
WelcometotheMySQLmonitor.Commandsendwith;org.
YourMySQLconnectionidis2
Serverversion:5.0.77Sourcedistribution
Typehelp;orhforhelp.Typectoclearthebuffer.
mysql>quit
Bye
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们! |
|