Detailed tutorial on compiling and installing MySQL 8.0.20 from source code

Detailed tutorial on compiling and installing MySQL 8.0.20 from source code

In the previous article, we introduced:

MySQL8.0.20 installation tutorial and detailed tutorial on installation issues https://www.jb51.net/article/186202.htm

MySQL8.0.20 download and installation and problems encountered (with pictures and text) https://www.jb51.net/article/186208.htm

Steps to install Mysql8.0.20 on CentOS7:

https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-20.html

1 Overview

This article mainly describes how to compile and install MySQL Community Edition 8.0.20 from source code. First, some knowledge about compilation and installation will be introduced, and then the compilation and installation will be started.

2 Knowledge about source code compilation and installation

2.1 make and configure

make is a compilation command that will look for the Makefile file in the current directory. The Makefile file records detailed information on how to compile the source code. Configure is a detection program written by the software developer to detect the user's development environment and generate a Makefile file after the detection is completed. Typically, configure will detect the following:

  • Is there a suitable compiler?
  • Whether it has the required function libraries and other dependencies
  • Is it compatible with this system?
  • Does the kernel header file exist?

2.2 Tarball File

The Tarball file is actually a file that compresses the source code using tar. Gzip is usually used for compression, and the extension is usually .tar.gz or .tgz. However, since technologies such as bzip2 and xz have better compression effects than gzip, the file name and extension will also become .tar.bz2 or .tar.xz. Typically a Tarball file contains:

  • Source code
  • Detection file (configure/config)
  • Instructions (README/INSTALL)

2.3 Compile and install related components from source code

2.3.1 Compiler

A compiler is required to perform compilation operations, usually gcc.

2.3.2 make+autoconfig

To simplify the compilation process, software released in Tarball form usually requires make to compile according to the dependencies of the target files. However, since make requires Makefile, autoconfig is required to generate Makefile.

2.3.3 Function Library

The libraries and related include files provided by the kernel are required.

2.4 Static and dynamic libraries

Function libraries are divided into two types: dynamic libraries and static libraries, most of which are placed in /lib and /lib64.

2.4.1 Static Libraries

The extension is .a, and it will be directly integrated into the executable program during compilation, so the file generated using the static library will be larger. The compiled executable file can be run directly without relying on external function libraries. In addition, it is difficult to upgrade because it is directly integrated into the program, and if the static library is upgraded, it needs to be recompiled.

2.4.2 Dynamic Libraries

The extension is .so. Unlike static libraries, dynamic libraries only have a pointer in the program during compilation. When the executable program needs to use the functions of the function library, it will read the function library for use. The generated executable file will be smaller, but the compiled program cannot be executed independently. In addition, upgrading is more convenient and does not require recompilation, because the executable file will directly point to the new function library file.

2.5 General steps for compiling and installing

  • (1) Obtain source code: generally use wget or curl or download from a browser.
  • (2) View the help file: After decompression, view the relevant contents of files such as INSTALL or README.
  • (3) Install dependencies: Install dependencies according to the official website documentation or the information obtained in the previous step
  • (4) Generate Makefile: Generally use configure/config to configure, detect the operating environment, specify the installation location, turn on/off corresponding functions, specify the location of related libraries, determine dependencies, etc. Generally, you need to use –help to get option help, specify the corresponding options, and then configure and generate Makefile
  • (5) Compilation: The actual compilation steps, a simple make command, actually includes header file precompilation, preprocessing, compilation and linking steps
  • (6) Installation: make install. This step actually performs two steps: installation and operating system connection.

Note that the above steps are in order, and if the previous step fails, the next step cannot be executed. In other words, the previous step must be executed successfully before the next step can be performed. After completing the above six steps, you can compile and install. Generally, some follow-up processing is required, such as adding the executable file path to PATH, adding header files and library files to /usr/include and /etc/ld.so.conf.d, and adding online help files to /etc/man_db.conf.

2.6 Psychological preparation before compiling and installing

Here is the last tip. Before installation, you can press ctrl+w to close this page to avoid countless pains.
The most common problems in compilation and installation are version and dependency issues. Version issues are easy to handle and can be upgraded through the package manager or manually. As for dependency issues, it is easy to install with the package manager, but it is very troublesome to compile and install because you don't know how many dependencies need to be installed under a certain dependency.
Therefore, you need to prepare sufficient time and have sufficient patience to solve countless problems in order to successfully compile and install large software such as MySQL and Workbench.
Without further ado, let’s get started.

3 Install MySQL

3.1 Installation Dependencies

The dependencies required by MySQL are as follows:

  • cmake
  • make (3.75 or above is recommended)
  • Compiler (GCC 5.3+ or Clang 4.0+ or ​​XCode 9+ or Developer Studio 12.6+ or Visual Studio 2017)
  • SSL library (uses the system's OpenSSL by default)
  • Boost C++ library, needed to build but not to use, no installation required, source code is enough
  • ncurses library
  • bison2.1+
  • git

3.2 Package Manager Installation

For my Debian system, I can use apt:

sudo apt-get install -y bison
 git hostname 
libncurses-dev 
libssl-dev make 
openssl pkg-config 
doxygen cmake make

RedHat8.x:

sudo yum install -y bison bzip2 git hostname ncurses-devel 
openssl openssl-devel pkgconfig tar wget zlib-devel 
doxygen diffutils rpcgen make libtirpc-devel cmake gcc

RedHat7.x:

sudo yum install -y bison bzip2 git hostname ncurses-devel 
openssl openssl-devel 
pkgconfig tar wget zlib-devel 
doxygen cmake gcc

Others can be searched by yourself.

3.2 Compile and install

If you don't want to install it using a package manager, you can use the compile and install method.
Welcome to join us.

3.2.1 Install cmake

tar -zxvf cmake-3.17.2.tar.gz
cd cmake-3.17.2
./bootstrap --prefix=/usr/local/cmake
make clean 
make -j 6 #6 is the number of CPU cores, custom modification, if it fails, please use make
make test
sudo make install

3.2.2 Install make

If there is no compiler, you cannot compile and install it. You can use the software package to install it. For my Debian system, I directly use apt:

sudo apt install make

3.2.3 Installing gcc

tar -xvf gcc-9.3.0.tar.xz
cd gcc-9.3.0
./contrib/download_prerequisites
mkdir build
cd build
../configure --prefix=/usr/local/gcc -enable-checking=release -disable-multilib 
make clean 
make -j 6
make test
sudo make install
sudo ln -sv /usr/local/gcc/include /usr/include/gcc
#/etc/ld.so.conf.d/gcc.conf add the following content /usr/local/gcc/lib
/usr/local/gcc/lib64

3.2.4 Install openssl

tar -zxvf openssl-1.1.1g.tar.gz
cd openssl-1.1.1g
./config --prefix=/usr/local/openssl --openssldir=/usr/local/openssl/ssl
#prefix is ​​the installation location, default is /usr/local
#openssldir is the location of the configuration file, which also stores the certificate and key pair make clean 
make -j 6
make test
sudo make install
sudo ln -sv /usr/local/openssl/include /usr/include/openssl
#/etc/ld.so.conf.d/openssl.conf plus the following content /usr/local/openssl/lib

3.2.5 Download boost

Click here for the official website.
The required version is 1.70.0. The latest version is 1.73.0. Theoretically, newer versions should be available. The version downloaded here is 1.70.0. If you do not download the boost library manually, you can set DDOWNLOAD_BOOST to 1 when using cmake to generate Makefile for downloading.

insert image description here

After downloading, just unzip it.

tar -xvf boost_1_70_0.tar.bz2

3.2.6 Installing ncurses

tar -zxvf ncurses-6.2.tar.gz
cd ncurses-6.2
./configure --prefix=/usr/local/ncurses
make -j 6
sudo make install

sudo ln -sv /usr/local/ncurses/include /usr/include/ncurses
#/etc/ld.so.conf.d/ncurses.conf add to /usr/local/ncurses/lib

3.2.7 Installing bison

tar -xvf bison-3.4.tar.xz
cd bison-3.4
./configure --prefix=/usr/local/bison
make -j 6
sudo make install
#/etc/ld.so.conf.d/bison.conf add to /usr/local/bison/lib

3.2.8 Install git

tar -xvf git-2.26.2.tar.xz
cd git-2.26.2
./configure --prefix=/usr/local/git \
--with-openssl=/usr/local/openssl \
--with-libpcre2=/usr/local/pcre2 \
--with-curl=/usr/local/curl \
--with-expat=/usr/local/expat \
--with-iconv=/usr/local/iconv \
--with-editor=/usr/bin/vim \
--with-zlib=/usr/local/zlib \
--with-tcltk=/usr/local/tcl
make all doc info
sudo make install install-doc install-html install-info

3.2.9 Subsequent processing

Modify PATH:

#Add export PATH=$PATH:\ to ~/.bash_profile or ~/.bashrc
/usr/local/cmake/bin:\
/usr/local/gcc/bin:\
/usr/local/openssl/bin:\
/usr/local/bison/bin:\
/usr/local/ncurses/bin:\
/usr/local/git/bin:\

Make the dynamic library effective:

ldconfig

If you do not have sufficient permissions, add sudo.

3.3 Download MySQL Community Edition

Official website here.

insert image description here

I don't know the difference between the first and second one, because I have tried both and they can be compiled and installed successfully. Although it says the second one has a Boost header, it seems to be of no use. The first one is used here.
Verification (optional):

md5sum mysql-boost-8.0.20.tar.gz 

insert image description here

3.4 Generate Makefile

sudo cmake .. \
-DDEFAULT_CHARSET=utf8mb4 \
-DDEFAULT_COLLATION=utf8mb4_unicode_ci \ #
-DENABLED_LOCAL_INFILE=ON \
-DWITH_SSL=system \
-DCMAKE_INSTALL_PREFIX=/usr/local/mysql/server \
-DMYSQL_DATADIR=/usr/local/mysql/data \
-DMYSQL_TCP_PORT=3306 \
-DDOWNLOAD_BOOST=0 \
-DWITH_BOOST=~/Desktop/boost
  • DDEFAULT_CHARSET: Specifies the default character set as utf8mb4. Due to historical issues, the utf8 in MySQL is not the real utf8, but a castrated version with a maximum length of only three bytes. When encountering a four-byte utf8 encoding, it will cause storage exceptions. Since 5.5.3, full utf8 is implemented using utf8mb4.
  • DDEFAULT_COLLATION: sorting rule, the default is utf8mb4_0900_ai_ci, which is a type of utf8mb4_unicode_ci. 0900 refers to the Unicode proofreading algorithm version, ai refers to accent insensitive (as means sensitive), and ci refers to case insensitive (cs means case sensitive). utf8mb4_unicode_ci means sorting and comparison based on standard Unicode, which can accurately sort between various languages. When utf8mb4_general_ci encounters certain special character sets, the sorting results may be inconsistent and the accuracy is poor, but the performance is better, and the comparison and sorting are faster.
  • DENABLED_LOCAL_INFILE indicates whether the load data command can be used.
  • DWITH_SSL means using the system's SSL library. If you do not use the system's SSL library, please customize the path.
  • DCMAKE_INSTALL_PREFIX: MySQL installation directory.
  • DMYSQL_DATADIR: MySQL data directory, initially empty.
  • DMYSQL_TCP_PORT: port, default 3306.
  • DDOWNLOAD_BOOST: The value is 0 or 1, whether to download the Boost library.
  • DWITH_BOOST: If you do not download the Boost library, it is the location of the local Boost library. If you download Boost, it indicates the download location.

For more parameters, please use

sudo cmake .. -LH

Check.

3.5 Compilation and Installation

sudo make

or

sudo make -jn

The author tried make -j 6, but failed, so he had no choice but to switch to make.
There is still a big gap between the speed of make and make -j.
After compiling, it is recommended to test it:

make test

Then install:

sudo make install

3.6 Subsequent Configuration

3.6.1 User Groups and Users

Create a new user group and user, and modify the user data directory permissions:

sudo groupadd mysql
sudo useradd -r -g mysql -s /bin/false mysql
sudo chown mysql:mysql /usr/local/mysql/data
sudo chmod 750 /usr/local/mysql/data

Modify the data directory as needed. If an unwritable error occurs later, change the permissions to 777.

3.6.2 Configuration File

The configuration file is my.cnf, which can be placed in

/etc/
/etc/mysql/
Installation directory /etc/
~/

Next, the reading order is from top to bottom. After the author installs, the default is /etc/mysql/my.cnf, which is the global configuration, ~/.my.cnf is the user-specific configuration, here directly modify /etc/mysql/my.cnf:

[client-server]

# Import all .cnf files from configuration directory
!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mariadb.conf.d/

[mysqld]
port=3306
basedir=/usr/local/mysql/server
datadir=/usr/local/mysql/data
character-set-server=utf8mb4
[mysql]
default-character-set=utf8mb4
[client]
port=3306
default-character-set=utf8mb4

The fields below [mysqld] are newly added, and you can modify the data directory yourself.
It is recommended that you change the character set to utf8mb4, because utf8 in MySQL refers to utf8mb3. The maximum character length supported by utf8 encoding is 3 bytes. If a 4-byte wide character is encountered, an insertion exception will occur. The maximum Unicode character that can be encoded by three-byte utf8 is 0xffffff, which is the Basic Multilingual Plane. Emoji and many uncommon Chinese characters cannot be stored. However, utf8mb4 is only supported after 5.5.3. For compatibility reasons, utf8mb4 should be used uniformly.

3.7 Initialization

Modify environment variables:

#.bashrc or .bash_profile plus export PATH=$PATH:/usr/local/mysql/server/bin

use

mysqld --initialize --user=mysql

or

mysqld --initialize-insecure --user=mysql

Then enable SSL and RSA support (optional):

mysql_ssl_rsa_setup

Finally start the service:

mysqld_safe --user=mysql &

3.8 Change Password

Log in as root, if using insecure initialization:

mysql -u --skip-password

Initialize using initialize:

mysql -u root -p

Just enter the password that appears during initialization.
Then change the password:

alter user root@localhost identified by 'xxx';

3.9 Testing

Use the built-in mysqlshow and mysqladmin:

mysqladmin -u root -p versionmysqlshow -u root -p 

insert image description here

3.10 Finishing work

3.10.1 Aliases

alias md='mysqld -u mysql &'

In this way, you can start the MySQL service by entering md.

3.10.2 Install Mycli

Mycli is a MySQL command-line client tool with auto-completion and syntax highlighting.
Use pip to install, for Python2 please use

pip install mycli

For Python 3 please use

pip3 install mycli

Can't find pip, please install:

sudo apt install python-pip#python2
sudo apt install python3-pip

Then use mycli to enter the database:

mycli -u root

Happy completion!

4 References

1. How to install MySQL under Linux (YUM and source code compilation)
2.utf8 and utf8mb4, utf8mb4_unicode_ci and utf8mb4_general_ci
3.MySQL-Official website installation documentation

Summarize

This is the end of this article about the detailed tutorial on compiling and installing MySQL 8.0.20 from source code. For more information about compiling and installing MySQL 8.0.20 from source code, 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:
  • Analysis of the new features of MySQL 8.0 - transactional data dictionary and atomic DDL
  • Detailed explanation of MySQL 8.0 dictionary table enhancement
  • Detailed tutorial for downloading and installing mysql8.0.21
  • MySQL 8.0.21.0 Community Edition Installation Tutorial (Detailed Illustrations)
  • How to install MySQL 8.0.13 in Alibaba Cloud CentOS 7
  • How to install and connect Navicat in MySQL 8.0.20 and what to pay attention to
  • Detailed tutorial on installing MySQL 8.0.20 database on CentOS 7
  • mysql8.0.20 download and installation and problems encountered (illustration and text)
  • MySQL 8.0.20 installation tutorial and detailed tutorial on installation issues
  • Detailed tutorial on how to compile and install mysql8.0.29 in CentOS8 deployment LNMP environment
  • How to quickly add columns in MySQL 8.0

<<:  Summary of essential breakpoint debugging techniques for JavaScript (recommended)

>>:  Detailed explanation of the solution to the problem of automatic disconnection of xshell remote connection

Recommend

New settings for text and fonts in CSS3

Text Shadow text-shadow: horizontal offset vertic...

Summary of all HTML interview questions

1. The role of doctype, the difference between st...

Comparison of various ways to measure the performance of JavaScript functions

Table of contents Overview Performance.now Consol...

CentOS6.8 Chinese/English environment switching tutorial diagram

1. Introduction People who are not used to Englis...

JavaScript implements class lottery applet

This article shares the specific code of JavaScri...

How to handle token expiration in WeChat Mini Programs

Table of contents Conclusion first question Solut...

SQL-based query statements

Table of contents 1. Basic SELECT statement 1. Qu...

Detailed explanation of Angular structural directive modules and styles

Table of contents 1. Structural instructions Modu...

Some suggestions on Vue code readability

Table of contents 1. Make good use of components ...

Tutorial on using $attrs and $listeners in Vue

Table of contents introduce Example Summarize int...

How to start a Java program in docker

Create a simple Spring boot web project Use the i...

How to set background blur with CSS

When making some pages, in order to make the page...

How to use uni-app to display buttons and search boxes in the top navigation bar

Recently, the company is preparing to develop an ...