Detailed tutorial on installing mysql8.0.22 on Alibaba Cloud centos7

Detailed tutorial on installing mysql8.0.22 on Alibaba Cloud centos7

1. Download the MySQL installation package

First click https://dev.mysql.com/downloads/repo/yum/

Find the Linux7 version;
The latest version of mysql will be automatically downloaded here. I have mysql8.0.22

Then go to splice URL:
http://dev.mysql.com/get/ + xxx.rpm
For example, mine is http://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm

So the command:

[root@hadoop ~]# rpm -ivh http://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm

2. Install MySQL

yum install -y mysql-server
Or (I only installed the previous one and the next one was automatically installed)
yum install mysql-community-server

If the following is displayed, the installation is successful
Complete!

3. Set up MYSQL

  • Set up Mysql startup [root@localhost ~]# systemctl enable mysqld.service
  • Check whether the startup autostart is installed

[root@localhost ~]# systemctl list-unit-files | grep mysqld

If the following content is displayed, the automatic startup installation has been completed
mysqld.service enabled

  • Set up service

[root@localhost ~]# systemctl start mysqld.service

The password modification method of MySQL 8.0 version is different from that of previous versions:
4. Log in to modify the MySQL password and view the MySQL default password

mysql> alter user 'root'@'localhost' identified by 'new password';

As shown in the picture, my initial password is #XIWpa5A>D)(

Log in to MySQL for the first time and enter the account and default password
[root@localhost ~]# mysql -uroot -p
Modify current password

#MySQL8.0 requires a combination of uppercase and lowercase letters, numbers, and special characters to modify the password

mysql> alter user 'root'@'localhost' identified by 'new password';

It is recommended to use a stronger password here, otherwise there is still a risk! In short, don't set the password too easily! But you still have to remember the password yourself.

Note when setting a password:

insert image description here

insert image description here

5. The command is executed immediately and takes effect

mysql>flush privileges;

Use external network/client access, such as navicat connection

Solution: Log in to MySQL and modify the host of the user logged in in the user table

#Remotely set mysql> use mysql;
mysql> select host,user from user;
±---------±-----------------+
| host | user |
±---------±-----------------+
| localhost | mysql.infoschema |
| localhost | mysql.session |
| localhost | mysql.sys |
| localhost | root |
±---------±-----------------+
4 rows in set (0.00 sec)

You can see the root user that has been created in the user table. The host field indicates the host you are logging in to. Its value can be either IP or host name. If you want to log in using the local IP, you can change the above Host value to your own IP .

Changing the value of the host field to % means that you can log in to the MySQL server as the root user on any client machine. It is recommended to set it to % during development.

mysql > update user set host = '%' where user = 'root';

Change the permissions to ALL PRIVILEGES (I didn't do this step)
Authorize the user name to grant any host access to the data

mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;

Remember to refresh:

mysql> FLUSH PRIVILEGES;

Later, modify the security group rules of Alibaba Cloud: In the Alibaba Cloud console firewall, add a new rule to open port 3306:

Sequence: Alibaba Cloud Console –> (Recommended) Add cloud server ECS in the common navigation and click —> Then click Instance ----> Click Security Group (create a new security group if there is none) –> Configure rules – then you can add it

Now you can connect using navicat.

1. Turn off the firewall:

sudo systemctl stop firewalld.service

2. Turn off the startup:

sudo systemctl disable firewalld.service

3. Check the firewall status

systemctl status firewalld

4. Open the firewall

systemctl start firewalld

Database related operations

Query the rpm package of mysql

rpm -qa | grep mysql

Start mysql

systemctl start mysqld.service

stop

systemctl stop mysqld.service

Restart

systemctl restart mysqld.service

Automatic startup

systemctl enable mysqld.service

Check the status of mysql: (two types)

service mysqld status
systemctl status mysqld.service

MySQL security configuration

mysql_secure_installation

Security settings include:

  1. Set a password for the root user
  2. Delete anonymous accounts (recommended for production environments)
  3. Disable remote login for root user
  4. Delete the test library and access permissions to the test library (delete)
  5. Refresh the authorization table to make the changes take effect

This is the end of this article about the detailed tutorial on how to install mysql8.0.22 on Alibaba Cloud CentOS7. For more information about how to install mysql8 on Alibaba Cloud CentOS7, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL 8.0.22 decompression version installation tutorial (for beginners only)
  • Super detailed MySQL8.0.22 installation and configuration tutorial
  • Detailed tutorial for installing MySQL 8.0.22 on Redhat 7.3 (binary installation)

<<:  Analysis of Docker's method for creating local images

>>:  Docker image management common operation code examples

Recommend

Mysql5.7.14 Linux version password forgotten perfect solution

In the /etc/my.conf file, add the following line ...

Vue implements DingTalk's attendance calendar

This article shares the specific code of Vue to i...

The difference between name and value in input tag

type is the control used for input and output in t...

Prometheus monitors MySQL using grafana display

Table of contents Prometheus monitors MySQL throu...

Docker image loading principle

Table of contents Docker images What is a mirror?...

Two solutions for Vue package upload server refresh 404 problem

1: nginx server solution, modify the .conf config...

Centos8.3, docker deployment springboot project actual case analysis

introduction Currently, k8s is very popular, and ...

Detailed examples of Docker-compose networks

Today I experimented with the network settings un...

MySQL 5.7.23 version installation tutorial and configuration method

It took me three hours to install MySQL myself. E...

Summary of the use of html meta tags (recommended)

Meta tag function The META tag is a key tag in th...

Detailed explanation of the use of Docker commit

Sometimes you need to install certain dependencie...

Analyze several common solutions to MySQL exceptions

Table of contents Preface 1. The database name or...

Summary of the 10 most frequently asked questions in Linux interviews

Preface If you are going to interview for a Linux...

Detailed introduction and usage examples of map tag parameters

Map tags must appear in pairs, i.e. <map> .....