Detailed installation process of MySQL5.6.40 under CentOS7 64

Detailed installation process of MySQL5.6.40 under CentOS7 64

MySQL5.6.40 installation process under CentOS7 64

1) Uninstall the previously installed MySQL

rm -rf /usr/local/mysql
rm -rf /etc/init.d/mysqld

2) Delete the database directory

rm -rf /data/mysql/

3) Install dependent packages after uninstallation to avoid problems during installation

yum -y install wget vim bash-completion
yum -y install gcc gcc-c++ cmake ncurses-devel autoconf perl perl-devel

4) Download mysql-5.6.40.tar.gz

wget https://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.40.tar.gz

5) Create the MySQL installation directory, data storage directory, and user group

mkdir -p /usr/local/mysql/data
groupadd mysql
useradd -r -g mysql mysql

6) Unzip the file to the current folder and install

tar -zxvf mysql-5.6.40.tar.gz
cd mysql-5.6.40
cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \ #Default installation directory -DINSTALL_DATADIR=/usr/local/mysql/data \ #Database storage directory -DDEFAULT_CHARSET=utf8 \ #Use utf8 characters -DDEFAULT_COLLATION=utf8_general_ci \ #Check characters -DEXTRA_CHARSETS=all \ #Install all extended character sets -DENABLED_LOCAL_INFILE=1 #Allow data to be imported locally make && make install

7) Set directory permissions

cd /usr/local/mysql
chown -R mysql:mysql .
chown -R mysql:mysql data

8) Add the mysql startup service to the system services

sp support-files/my-default.cnf /etc/my.cnf

9) Create a basic table

./scripts/mysql_install_db --user=mysql

10) Configure the environment variables and add them

vim /etc/profile
export MYSQL_HOME="/usr/local/mysql"
export PATH="$PATH:$MYSQL_HOME/bin"
#:wqSave and exitsource /etc/profile

11) Add the mysql startup file to the system startup file

cp support-files/mysql.server /etc/init.d/mysql

12) mysql command under centOS7

systemctl start mysql
systemctl restart mysql
systemctl stop mysql
systemctl enable mysql

13) Change mysql password

mysqladmin -u root password

14) Connect to MySQL

mysql -uroot -p
****** #Enter password exit #Exit

Summarize

This is the end of this article about the installation process of MySQL5.6.40 under CentOS7 64. For more information about installing MySQL5.6.40 on CentOS7, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed tutorial on installing MySQL 8.0.20 database on CentOS 7
  • Detailed tutorial on installing mysql 8.0.20 on CentOS7.8
  • Tutorial analysis of quick installation of mysql5.7 based on centos7
  • 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

<<:  An article teaches you JS function inheritance

>>:  Analysis of Alibaba Cloud CentOS7 server nginx configuration and FAQs

Recommend

Detailed tutorial on installing pxc cluster with docker

Table of contents Preface Preliminary preparation...

JavaScript+HTML to implement student information management system

Table of contents 1. Introduction 2. Rendering 3....

Implementation of 2D and 3D transformation in CSS3

CSS3 implements 2D plane transformation and visua...

Intellij IDEA quick implementation of Docker image deployment method steps

Table of contents 1. Docker enables remote access...

Six-step example code for JDBC connection (connecting to MySQL)

Six steps of JDBC: 1. Register the driver 2. Get ...

Solution to the problem of large font size on iPhone devices in wap pages

If you don't want to use javascript control, t...

9 Tips for Web Page Layout

<br />Related articles: 9 practical suggesti...

Example code for converting Mysql query result set into JSON data

Mysql converts query result set into JSON data Pr...

The role of nextTick in Vue and several simple usage scenarios

Purpose Understand the role of nextTick and sever...

HTTP and HTTP Collaboration Web Server Access Flow Diagram

A web server can build multiple web sites with in...

The difference and introduction of ARGB, RGB and RGBA

ARGB is a color mode, which is the RGB color mode...

Detailed explanation of common Docker commands

1. Help Command 1. View the current Docker versio...

Detailed explanation and examples of database account password encryption

Detailed explanation and examples of database acc...

960 Grid System Basic Principles and Usage

Of course, there are many people who hold the oppo...