Detailed installation and configuration tutorial of mysql5.7 on CentOS

Detailed installation and configuration tutorial of mysql5.7 on CentOS

Install

Make sure your user has permission to install

No root switch

su root

(su means: switch user)

# rpm -ivh http://dev.mysql.com/get/mysql57-community-release-el6-9.noarch.rpm

You may encounter

warning: /var/tmp/rpm-tmp.6V5aFC: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY

Can be ignored (personal opinion, Baidu did not find a suitable answer)

# yum install mysql-community-server

Waiting for the installation to complete....

Configuration

After installation, the initial password can be found here:

grep 'temporary password' ar/log/mysqld.log

MySQL 5.7 has requirements for password complexity. If you want to create a simple password, you can first execute

set global validate_password_policy=0;

Create a user again

Please turn off SELinux on the newly installed server, otherwise you may encounter many problems caused by permissions.

setenforce 0
vi /etc/selinux/config

Change ENFORCE=enforcing to ENFORCE=disable

Configuration Files

Linux: /etc/my.cnf
Windows: my.ini in the installation directory

Default character set

Versions prior to 5.6

[mysqld]
default-character-set=utf8

Versions after 5.6

[mysqld]
character-set-server=utf8

Modify the character set of an existing database

alter database mydb default character set utf8;

Table names are not case sensitive

[mysqld]
lower_case_table_names=1

Allows creation of functions in log-bin mode

[mysqld]
log_bin_trust_function_creators=true

Enable strict mode. In non-strict mode, fields that are too long will be automatically truncated.

[mysqld]
sql-mode="STRICT_TRANS_TABLES"

The above is the detailed introduction of CenOS installation of MySQL 5.7 and simple configuration tutorial. I hope it will be helpful to everyone. 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:
  • CentOS 6.5 installation mysql5.7 tutorial
  • CentOS6.8 uses cmake to install MySQL5.7.18
  • Detailed tutorial on installing MySQL 5.7.18 under CentOS 6.5
  • Deploy MySQL 5.7.17 binary installation and multi-instance configuration on CentOS 6.5
  • Install mysql5.7.13 using RPM in CentOS 7
  • MySQL 5.7 installation and configuration tutorial under CentOS7 (YUM)
  • Tutorial on compiling and installing mysql5.7 under centos 7 system
  • CentOS 7.2.1511 compile and install Nginx1.10.1+MySQL5.7.14+PHP7.0.11
  • Detailed explanation of how to compile and install PHP7.0.10+MySQL5.7.14+Nginx1.10.1 under CentOS 7.2 (mini version)
  • Linux learning third Centos7 installation mysql5.7.16 database

<<:  10 Popular Windows Apps That Are Also Available on Linux

>>:  Bootstrap FileInput implements image upload function

Recommend

Steps for IDEA to integrate Docker to achieve remote deployment

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

HTML form tag usage learning tutorial

Forms in HTML can be used to collect various type...

WeChat Mini Programs Implement Star Rating

This article shares the specific code for WeChat ...

jQuery implements percentage scoring progress bar

This article shares the specific code of jquery t...

Use of Linux relative and absolute paths

01. Overview Absolute paths and relative paths ar...

Solution for applying CSS3 transforms to background images

CSS transformations, while cool, have not yet bee...

JavaScript setinterval delay one second solution

When using setinterval, it is found that it will ...

MySQL 5.6.23 Installation and Configuration Environment Variables Tutorial

This article shares the installation and configur...

10 key differences between HTML5 and HTML4

HTML5 is the next version of the HTML standard. M...

Vue implements login type switching

This article example shares the specific code of ...

What is the file mysql-bin.000001 in mysql? Can it be deleted?

After installing MySQL using ports, I found that ...

Detailed analysis of Vue child components and parent components

Table of contents 1. Parent components and child ...

How to upload the jar package to nexus via the web page

When using Maven to manage projects, how to uploa...

Basic statements of MySQL data definition language DDL

MySQL DDL statements What is DDL, DML. DDL is dat...