How to install MySQL using yum on Centos7 and achieve remote connection

How to install MySQL using yum on Centos7 and achieve remote connection

Centos7 uses yum to install MySQL and how to achieve remote connection. Because MySQL was acquired by Oracle, it is currently recommended to use mariadb database

Here are the steps:

1)yum install mariadb

2) yum install mariadb-server

3) yum install mariadb-devel

chmod -R 770 /var/lib/mysql
systemctl restart mariadb.service

Now the MySQL installation is complete

Initialize password:

Execute the mysql command to set the initial password

SET PASSWORD FOR 'root'@'localhost' = PASSWORD('input the password you like');

Tips:

Remotely connect to the database:

1)mysql -u root -p password ;use mysql ;

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION; Allow any IP to log in as root user to flush privileges; effective immediately

2) Modify the my.cnf file and comment out the bindaddress statement, if any

3) Check the firewall

systemctl status iptables.service /firewalld.service and shut down

In addition, if you do not want to close the firewall, you can add rules. The following is to add using the command

1) Make sure the firewall is enabled

2) Execute the command firewall-cmd --permanent(永久) --add-port=3306 (default port)/tcp (protocol) and respond with success

3) Run the command to check whether the rule is added successfully firewall-cmd --permanent --query-port=3306/tcp

4) Restart the firewall to take effect systemctl restart mariadb.service

The above is the method that I introduced to you to install MySQL and realize remote connection using yum on Centos7. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Detailed tutorial on installing MySQL 8.0 from source code on CentOS 7.4
  • Installation tutorial of mysql8.0rpm on centos7
  • Detailed steps to install Mysql5.7.19 using yum on Centos7
  • Detailed tutorial on installing Mysql5.7.19 on Centos7 under Linux
  • How to quickly install MySQL 5.7 using YUM under Centos 7.2
  • Detailed tutorial on installing MySQL 8 in CentOS 7

<<:  Linux centOS installation JDK and Tomcat tutorial

>>:  Example of using setInterval function in React

Recommend

How to connect to MySQL visualization tool Navicat

After installing Navicat The following error may ...

Tutorial on installing AutoFs mount service under Linux

Whether it is Samba service or NFS service, the m...

Alpine Docker image font problem solving operations

1. Run fonts, open the font folder, and find the ...

Detailed explanation of the use of Vue.js render function

Vue recommends using templates to create your HTM...

Installation steps of Ubuntu 20.04 double pinyin input method

1. Set up Chinese input method 2. Set the double ...

Solve the problem of not finding NULL from set operation to mysql not like

An interesting discovery: There is a table with a...

DIV background semi-transparent text non-translucent style

DIV background is semi-transparent, but the words ...

A brief introduction to MySQL database optimization techniques

A mature database architecture is not designed wi...

SSM implements the mysql database account password ciphertext login function

introduction Our company is engaged in the resear...

Description of the execution mechanisms of static pages and dynamic pages

1. A static page means that there are only HTML ta...

Example of nginx ip blacklist dynamic ban

When a website is maliciously requested, blacklis...

How can MySQL effectively prevent database deletion and running away?

Table of contents Safe Mode Settings test 1. Upda...