Subscribe to How-To Geek

Change or Set the MySQL Root password

For every database, you should set the root or sa passwords to something other than the default, unless you want to get hacked. For mysql, the system administrator user is called root. You will use the mysqladmin utility from a command line to set the new password. Notice that there are two commands to be run.

Syntax:

mysqladmin -u root password “newpassword”

mysqladmin -u root -h host_name password “newpassword”

Example:

mysqladmin -u root password ws8dr8as3

mysqladmin -u root -h localhost password ws8dr8as3

You will also want to restart the database server after running this command

sudo /etc/init.d/mysql restart

| More
This article was originally written on 09/11/06 Tagged with: MySQL

Daily Email Updates

You can get our how-to articles in your inbox each day for free. Just enter your name and email below:


Name:
Email:

Comments (6)

  1. Lior

    I don’t know why, but I needed to use
    mysqladmin -u root -p”newpassword” -h host_name password “newpassword”
    instead your second command.

  2. xunshirine

    After the second command terminal gives that

    mysqladmin: connect to server at ‘localhost’ failed
    error: ‘Access denied for user ‘root’@'localhost’ (using password: NO)’

    How can I solve that?
    Thanks in advance.

  3. Steven Bao

    Works like a charm on MySQL5. Thanks for the tip.

  4. DW

    Resetting the password this way will put the password in your shell’s history:
    $ history | grep mysqladmin

    For that reason, you might want to consider setting/resetting the password from the mysql client:

    $ mysql -u root mysql
    mysql> SET PASSWORD FOR root@localhost=PASSWORD(’newpasswordgoeshere’);

  5. JDO

    That will also leave it in a file, the .mysql_history file.

  6. Kabi

    Good Stuff poeple


Leave a Comment




Leave your friendly comment here.

If you have a computer help question, click here to leave it on the forums instead.

Note: Your comment may not show up immediately on the site.

Our Friends
Getting Started


About How-To Geek
What Is That Process?
svchost.exe
jusched.exe
dwm.exe
ctfmon.exe
wmpnetwk.exe
wmpnscfg.exe
rundll32.exe
wfcrun32.exe
Ipoint.exe
Itype.exe
Wfica32.exe
Mobsync.exe
conhost.exe
Dpupdchk.exe Adobe_Updater.exe

Copyright © 2006-2009 HowToGeek.com. All Rights Reserved.