How to install MySql in CentOS 8 and allow remote connections

How to install MySql in CentOS 8 and allow remote connections

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:
  • Solve the problem of error 10038 when connecting to MySQL remotely in Navicat
  • Detailed explanation of Navicat's slow remote connection to MySQL
  • Tutorial on installing MySQL with Docker and implementing remote connection
  • Solution to the problem that Navicat cannot remotely connect to MySql server
  • How to solve the 10060 unknow error when Navicat remotely connects to MySQL
  • Docker deploys mysql to achieve remote connection sample code
  • Navicat remote connection to MySQL implementation steps analysis
  • Tutorial on installing MySql5.7 in CentOS7.2 and enabling remote connection authorization
  • How to authorize remote connections in MySQL in Linux
  • How to enable MySQL remote connection

<<:  Detailed explanation of the service problem reported by Ubuntu 20.04 using Xshell through SSH connection

>>:  WeChat applet to determine whether the mobile phone number is legal example code

Recommend

How to use MyCat to implement MySQL master-slave read-write separation in Linux

Table of contents Linux-Use MyCat to implement My...

It's the end of the year, is your MySQL password safe?

Preface: It’s the end of the year, isn’t it time ...

Detailed explanation of MySQL execution plan

The EXPLAIN statement provides information about ...

Problems and solutions of using jsx syntax in React-vscode

Problem Description After installing the plugin E...

HTML sample code for implementing tab switching

Tab switching is also a common technology in proj...

Summary of basic knowledge and operations of MySQL database

This article uses examples to explain the basic k...

How to generate a unique server-id in MySQL

Preface We all know that MySQL uses server-id to ...

Detailed explanation of Javascript closures and applications

Table of contents Preface 1. What is a closure? 1...

MySQL Series 11 Logging

Tutorial Series MySQL series: Basic concepts of M...

How to use MySQL limit and solve the problem of large paging

Preface In daily development, when we use MySQL t...

Detailed explanation of Svn one-click installation shell script under linxu

#!/bin/bash #Download SVN yum -y install subversi...

Native js canvas to achieve a simple snake

This article shares the specific code of js canva...

MySQL 5.7.20 Green Edition Installation Detailed Graphic Tutorial

First, let’s understand what MySQL is? MySQL is a...

Detailed tutorial on installation and configuration of nginx under Centos7

Note: The basic directory path for software insta...

Methods and techniques for designing an interesting website (picture)

Have you ever encountered a situation where we hav...