Tutorial analysis of quick installation of mysql5.7 based on centos7

Tutorial analysis of quick installation of mysql5.7 based on centos7

one.

wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm

two.

yum -y localinstall mysql57-community-release-el7-11.noarch.rpm

three.

yum -y install mysql-community-server

Four.

systemctl start mysqld<br>ps -ef | grep mysql

5.MySQL default password

cat /var/log/mysqld.log

Login

mysql -uroot -pykO:DNGXx5ee

7. Change the default password

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

Set up remote login

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

quit

exit;

8. Open port 3306 on the firewall

firewall-cmd --zone=public --add-port=3306/tcp --permanent
firewall-cmd --reload

9. Configure MySQL default encoding to utf-8

vim /etc/my.cnf<br><br>

character_set_server=utf8

init_connect='SET NAMES utf8'

10. Restart the service

systemctl restart mysqld

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:
  • Detailed installation process of MySQL5.6.40 under CentOS7 64
  • Detailed tutorial on installing MySQL 8.0.20 database on CentOS 7
  • Detailed tutorial on installing mysql 8.0.20 on CentOS7.8
  • Detailed tutorial on how to compile and install mysql8.0.29 in CentOS8 deployment LNMP environment
  • CentOS7.5 installation of MySQL8.0.19 tutorial detailed instructions
  • Install CentOS7 in VMware (set static IP address) and install mySql database through docker container (super detailed tutorial)
  • Centos7 mysql database installation and configuration tutorial

<<:  How to implement logic reuse with Vue3 composition API

>>:  mysql8.0 forgotten password modification and net command service name invalid problem

Recommend

CSS easily implements fixed-ratio block-level containers

When designing H5 layout, you will usually encoun...

A "classic" pitfall of MySQL UPDATE statement

Table of contents 1. Problematic SQL statements S...

Commonplace talk about MySQL event scheduler (must read)

Overview MySQL also has its own event scheduler, ...

Bootstrap FileInput implements image upload function

This article example shares the specific code of ...

Vue implements a simple marquee effect

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

A brief introduction to the command line tool mycli for operating MySQL database

GitHub has all kinds of magic tools. Today I foun...

Instructions for using JSON operation functions in Mysql5.7

Preface JSON is a lightweight data exchange forma...

win10 mysql 5.6.35 winx64 free installation version configuration tutorial

mysql 5.6.35 winx64 free installation version con...

Detailed tutorial for springcloud alibaba nacos linux configuration

First download the compressed package of nacos fr...

Steps for IDEA to integrate Docker to achieve remote deployment

1. Enable remote access to the docker server Log ...

Detailed tutorial on installing pxc cluster with docker

Table of contents Preface Preliminary preparation...