Detailed tutorial on installing MySQL 8.0 from source code on CentOS 7.4

Detailed tutorial on installing MySQL 8.0 from source code on CentOS 7.4

MySQL 8 official version 8.0.11 has been released. Officials say MySQL 8 is 2 times faster than MySQL 5.7 and brings a lot of improvements and faster performance!

The following is a record of my installation process on April 23, 2018. The whole process takes about an hour, and the make && make install process takes longer.

1. Environment

CentOS7.4 64-bit Minimal Installation

2. Preparation

1. Install dependencies

 yum -y install wget cmake gcc gcc-c++ ncurses ncurses-devel libaio-devel openssl openssl-devel

2. Download the source package

 wget https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-boost-8.0.11.tar.gz (this version comes with boost)

3. Create mysql user

 groupadd mysql
    useradd -r -g mysql -s /bin/false mysql

4. Create installation directory and data directory

   mkdir -p /usr/local/mysql
   mkdir -p /data/mysql

3. Install MySQL 8.0.11

1. Unzip the source package

tar -zxf mysql-boost-8.0.11.tar.gz -C /usr/local

2. Compile & Install

   cd /usr/local/mysql-8.0.11
   cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/usr/local/mysql/data -DSYSCONFDIR=/etc -DMYSQL_TCP_PORT=3306 -DWITH_BOOST=/usr/local/mysql-8.0.11/boost 
   make && make install

3. Configure my.cnf file

cat /etc/my.cnf
   [mysqld]
   server-id=1
   port=3306
   basedir=/usr/local/mysql
   datadir=/data/mysql
   ##Please add parameters according to the actual situation

4. Directory permission modification

chown -R mysql:mysql /usr/local/mysql
   chown -R mysql:mysql /data/mysql
   chmod 755 /usr/local/mysql -R
   chmod 755 /data/mysql -R

5. Initialization

bin/mysqld --initialize --user=mysql --datadir=/data/mysql/
   bin/mysql_ssl_rsa_setup

6. Start mysql

 bin/mysqld_safe --user=mysql &

7.Change account password

  bin/mysql -uroot -p
   mysql> alter user 'root'@'localhost' identified by "123456";
    mysql> show databases;
    +--------------------+
    | Database |
    +--------------------+
    | information_schema |
    |mysql |
    | performance_schema |
    |sys|
    +--------------------+
    4 rows in set (0.00 sec)
    ##Add a remote special account mysql> create user root@'%' identified by '123456';
    Query OK, 0 rows affected (0.08 sec)
    mysql> grant all privileges on *.* to root@'%';
    Query OK, 0 rows affected (0.04 sec)
    mysql> flush privileges;
    Query OK, 0 rows affected (0.01 sec)

8. Create a soft link (optional)

 ln -s /usr/local/mysql/bin/* /usr/local/bin/
    mysql -h 127.0.0.1 -P 3306 -uroot -p123456 -e "select version();"
    mysql: [Warning] Using a password on the command line interface can be insecure.
    +-----------+
    | version() |
    +-----------+
    | 8.0.11 |
    +-----------+

9. Add to startup (optional)

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

Special note: MySQL officially recommends using the binary installation method. (The picture below is a screenshot of the official document)

Summarize

The above is a detailed tutorial on how to install MySQL 8.0 from CentOS 7.4 source code. 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:
  • How to install MySQL 8.0.13 in Alibaba Cloud CentOS 7
  • Detailed tutorial on installing MySQL 8.0.20 database on CentOS 7
  • Tutorial on installing mysql8 on linux centos7
  • CentOS7.5 installation of MySQL8.0.19 tutorial detailed instructions
  • Tutorial diagram of installing mysql8.0.18 under linux (Centos7)
  • Detailed steps to install MYSQL8.0 on CentOS7.6
  • CentOS7 enables MySQL8 master-slave backup and daily scheduled full backup (recommended)
  • Installation tutorial of mysql8.0rpm on centos7
  • Centos7 installation of MySQL8 tutorial

<<:  Detailed explanation of asynchronous iterators in nodejs

>>:  WeChat applet + ECharts to achieve dynamic refresh process record

Recommend

How to quickly paginate MySQL data volumes of tens of millions

Preface In backend development, in order to preve...

Linux process management tool supervisor installation and configuration tutorial

Environment: CentOS 7 Official documentation: htt...

3 functions of toString method in js

Table of contents 1. Three functions of toString ...

Detailed explanation of how to use join to optimize SQL in MySQL

0. Prepare relevant tables for the following test...

HTML+CSS div solution when relative width and absolute width conflict

Div solution when relative width and absolute wid...

CSS3 timeline animation

Achieve results html <h2>CSS3 Timeline</...

A brief discussion on the execution details of Mysql multi-table join query

First, build the case demonstration table for thi...

Nginx try_files directive usage examples

Nginx's configuration syntax is flexible and ...

Ideas and practice of multi-language solution for Vue.js front-end project

Table of contents 1. What content usually needs t...

Detailed explanation of MySQL alter ignore syntax

When I was at work today, the business side asked...

MySQL data type optimization principles

MySQL supports many data types, and choosing the ...

Discussion on image path issues in css (same package/different package)

In CSS files, sometimes you need to use background...

Server stress testing concepts and methods (TPS/concurrency)

Table of contents 1 Indicators in stress testing ...

Problems installing TensorRT in docker container

Uninstall the installed version on Ubuntu: sudo a...