MySQL mariadb password settings

Source: Internet
Author: User
Tags mysql login

Original: https://my.oschina.net/uyunsky/blog/109532

First, the initial installation

Method 1:
Under the/usr/local/mysql/bin/:
./mysqladmin-u root password ' new_password '
This method is set for general installation.
If MySQL login error: mysqladmin:connect to server at ' localhost ' failed
Unable to change password


with service mysqld stop


Mysqld_safe--skip-grant-tables &


Enter Mysql-uroot-p return Enter


>use MySQL;
> Update user Set Password=password ("Newpass") where user= "root";
Change Password to Newpassord
> Flush Privileges; Update permissions
> Quit quitting



Service mysqld Restart
Mysql-uroot-p New Password entry


Method 2:
In MySQL state:
Mysql>update user SET Password=password (' New_password ') WHERE user= ' root ';
Mysql>flush privileges;


Method 3:
Mysql>set PASSWORD for Root=password (' New_password ');

MySQL mariadb password settings

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.