How to install and modify the initial password of mysql5.7.18 under Centos7.3

How to install and modify the initial password of mysql5.7.18 under Centos7.3

This article shares with you the installation of mysql5.7.18 under Centos7.3 and the modification of the initial password for your reference. The specific contents are as follows

1. Official installation documentation

http://dev.mysql.com/doc/mysql-yum-repo-quick-guide/en/

2. Download the MySQL yum package

http://dev.mysql.com/downloads/repo/yum/

Download to local and then upload to the server, or use wget to download directly

wget http://repo.mysql.com/mysql57-community-release-el7-10.noarch.rpm

3. Install the software source

Replace platform-and-version-specific-package-name with the name of the rpm you downloaded

sudo rpm -Uvh platform-and-version-specific-package-name.rpm

For example

rpm -Uvh mysql57-community-release-el7-10.noarch.rpm 


4. Install MySQL server

yum install -y mysql-community-server

If the network environment is not very good, you can go make a cup of tea or play a glory kill after executing the command.

5. Start mysql

service mysqld start
systemctl start mysqld.service

6. Check the running status of mysql

service mysqld status
systemctl status mysqld.service

7. Change temporary password

After Mysql5.7 is installed by default, root has a password.

7.1 Get the temporary password of MySQL

To enhance security, MySQL 5.7 randomly generates a password for the root user. In the error log, the location of the error log, if the RPM package is installed, is /var/log/mysqld.log by default.
Only after starting MySQL once can you view the temporary password

grep 'temporary password' /var/log/mysqld.log


The password here is YdsGaxOq>2n!

7.2 Login and change password

Log in using the default password

mysql -uroot -p

After logging in to the server with this password, you must change the password immediately, otherwise the following error will be reported:

mysql> select @@log_error;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
mysql>

Change Password

ALTER USER 'root'@'localhost' IDENTIFIED BY 'root123';

If the password is too simple, the following prompt will appear


How to solve ERROR 1819 (HY000): Your password does not satisfy the current policy requirements ? The solution is provided directly here. Detailed instructions are given at the end of the article.

Two global parameters must be modified:
First, modify the value of the validate_password_policy parameter

mysql> set global validate_password_policy=0;

Change the password length

set global validate_password_length=1;

Just execute the change password again

ALTER USER 'root'@'localhost' IDENTIFIED BY 'root123';

8. Authorize other machines to log in

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION; FLUSH PRIVILEGES

9. Detailed instructions on password setting

ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

Wonderful topic sharing:

MySQL different versions installation tutorial

MySQL 5.6 installation tutorials for various versions

MySQL 5.7 installation tutorials for various versions

mysql8.0 installation tutorials for various versions

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to quickly modify the root password under CentOS8
  • CentOS 7 set grub password and single user login example code
  • How to change the password of mysql5.7.20 under linux CentOS 7.4
  • How to reset the root password in CentOS7
  • How to modify the root password of MySQL in CentOS environment
  • Solution to the problem of still having to enter a password after configuring ssh password-free login in centos
  • How to change mysql password under Centos
  • CentOS 7 Forgot Password Solution Process Diagram

<<:  Docker container deployment attempt - multi-container communication (node+mongoDB+nginx)

>>:  Global call implementation of Vue2.x Picker on mobile terminal

Recommend

Some settings of Div about border and transparency

frame: Style=”border-style:solid;border-width:5px;...

How to configure ssh/sftp and set permissions under Linux operating system

Compared with FTP, SSH-based sftp service has bet...

Sliding menu implemented with CSS3

Result:Implementation code: <!DOCTYPE html>...

Windows Service 2016 Datacenter\Stand\Embedded Activation Method (2021)

Run cmd with administrator privileges slmgr /ipk ...

Several ways to pass data from parent components to child components in Vue

I have been studying the source code of Vue recen...

Detailed explanation of Vue save automatic formatting line break

I searched for many ways to change it online but ...

Detailed explanation of Linux host name modification command

Linux change hostname command 1. If you only need...

Detailed tutorial on installing Spring boot applications on Linux systems

Unix/Linux Services systemd services Operation pr...

Angular framework detailed explanation of view abstract definition

Preface As a front-end framework designed "f...

Detailed tutorial on VMware installation of Linux CentOS 7.7 system

How to install Linux CentOS 7.7 system in Vmware,...

How to make a website front end elegant and attractive to users

The temperament of a web front-end website is a fe...

Ubuntu 20.04 how to modify the IP address example

illustrate: Today, when continuing the last offic...