Download and install. First check whether there is MySQL or MariaDB in the system. If so, uninstall it first. rpm -qa | grep mysql rpm -qa | grep mariadb As shown in the figure, there is mariaDB data in my system. Execute uninstallation. If there is MySQL, the uninstallation method is the same. remove mariadb-libs-5.5.52-1.el7.x86_64 To install the dependent environment, we directly use yum to install it and execute it in sequence yum install -y perl.x86_64 yum install -y libaio.x86_64 yum install -y net-tools.x86_64 yum install -y libtinfo* yum install -y libncurses* Download the domestic MySQL installation package (the reason for using the domestic one is that it downloads faster. The mirror resource of Tsinghua University is used below) wget -P /tmp http://mirrors.ustc.edu.cn/mysql-ftp/Downloads/MySQL-5.7/mysql-community-common-5.7.31-1.el7.x86_64.rpm wget -P /tmp http://mirrors.ustc.edu.cn/mysql-ftp/Downloads/MySQL-5.7/mysql-community-libs-5.7.31-1.el7.x86_64.rpm wget -P /tmp http://mirrors.ustc.edu.cn/mysql-ftp/Downloads/MySQL-5.7/mysql-community-client-5.7.31-1.el7.x86_64.rpm wget -P /tmp http://mirrors.ustc.edu.cn/mysql-ftp/Downloads/MySQL-5.7/mysql-community-server-5.7.31-1.el7.x86_64.rpm Then install mysql dependencies in order, execute them one by one rpm -ivh mysql-community-common-5.7.31-1.el7.x86_64.rpm rpm -ivh mysql-community-libs-5.7.31-1.el7.x86_64.rpm rpm -ivh mysql-community-client-5.7.31-1.el7.x86_64.rpm rpm -ivh mysql-community-server-5.7.31-1.el7.x86_64.rpm Restart the mysql service systemctl restart mysqld.service Check the mysql service status systemctl status mysqld.service Check the default temporary password. My password is: >dgp,9q&?ikW grep 'temporary password' /var/log/mysqld.log Test Login mysql -u root -p Then enter the password and log in successfully. Change the password and enable remote connection Since the new version of MySQL has upgraded the password security policy, if you have been using the default password, Many functions are restricted, including modifying security policies and enabling remote connections; So you still need to change your password first. The password must contain a combination of uppercase and lowercase letters, numbers, and special characters. Log in first mysql -u root -p Then change the password ALTER USER 'root'@'localhost' IDENTIFIED BY '~1QAZxsw2' Modify to allow remote connections use mysql; update user set Host = '%' where Host = 'localhost' and User='root'; flush privileges; Open port 3306 Open port 3306 firewall-cmd --zone=public --add-port=3306/tcp --permanent Restart the firewall firewall-cmd --reload Check the firewall status to show success, which means it is successfully enabled. systemctl status firewalld Check the status of the specified port and it will show success, which means the port is successfully opened. firewall-cmd --query-port=6379/tcp Then use the database connection tool to connect successfully; This is the end of this article about installing MySql on CentOS 8 and setting up to allow remote connections. For more information about setting up MySql on CentOS 8 to allow remote connections, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
>>: WeChat applet to determine whether the mobile phone number is legal example code
Table of contents Linux-Use MyCat to implement My...
Preface: It’s the end of the year, isn’t it time ...
The EXPLAIN statement provides information about ...
Problem Description After installing the plugin E...
Tab switching is also a common technology in proj...
This article uses examples to explain the basic k...
Preface We all know that MySQL uses server-id to ...
Table of contents Preface 1. What is a closure? 1...
Tutorial Series MySQL series: Basic concepts of M...
Preface In daily development, when we use MySQL t...
#!/bin/bash #Download SVN yum -y install subversi...
This article shares the specific code of js canva...
First, let’s understand what MySQL is? MySQL is a...
Note: The basic directory path for software insta...
Have you ever encountered a situation where we hav...