Mysql 5.7.17 編譯安裝

來源:互聯網
上載者:User

標籤:mysql 5.7.17 編譯安裝

環境準備:

mysql 安裝包:mysql-5.7.17.tar.gz


yum源:

[[email protected]_1 ~]# cat /etc/yum.repos.d/server.repo 

[local]

name=local

baseurl=file:///mnt/cdrom

gpgcheck=0

enabled=1

[[email protected]_1 ~]# 


系統版本:

[[email protected]_1 ~]# cat /etc/redhat-release 

CentOS Linux release 7.2.1511 (Core) 

[[email protected]_1 ~]# uname -r

3.10.0-327.el7.x86_64


安裝依賴包:

[[email protected]_1 mysql-5.7.17]# yum install -y libaio-devel ncurses-devel cmake gcc-c++ bison


建立使用者及解壓:

[[email protected]_1 mysql-5.7.17]# useradd -s /sbin/nologin -M mysql

[[email protected]_1 mysql-5.7.17]#mkdir -p /data/3307/data

[[email protected]_1 mysql-5.7.17]# tar xf mysql-5.7.17.tar.gz 

[[email protected]_1 mysql-5.7.17]# cd mysql-5.7.17/

編譯安裝:

[[email protected]_1 mysql-5.7.17]# cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql-5.7.17/ -DMYSQL_DATADIR=/usr/local/mysql-5.7.17/data -DMYSQL_UNIX_ADDR=/usr/local/mysql-5.7.17/tmp/mysql.sock -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DEXTRA_CHARSETS=gbk,gb2312,utf8,ascii -DENABLED_LOOCAL_INFILE=ON -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_FEDERATED_STORAGE_ENGINE=1 -DWITH_BLACKHOLE_STORAGE_ENGINE=1 -DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 -DWITHOUT_PARRTITION_STORAGE_ENGINE=1 -DWITH_FAST_MUTEXES=1 -DWITH_ZLIB=bundled -DENABLED_LOCAL_INFILE=1 -DWITH_READLINE=1 -DWITH_EMBEDDED_SERVER=1-DWITH_DEBUG=0

-- Running cmake version 2.8.11

-- Could NOT find Git (missing:  GIT_EXECUTABLE) 

-- Configuring with MAX_INDEXES = 64U

-- SIZEOF_VOIDP 8

-- MySQL 5.7.17

-- Packaging as: mysql-5.7.17-Linux-x86_64

-- Looked for boost/version.hpp in  and 

-- BOOST_INCLUDE_DIR BOOST_INCLUDE_DIR-NOTFOUND

-- LOCAL_BOOST_DIR 

-- LOCAL_BOOST_ZIP 

-- Could not find (the correct version of) boost.

-- MySQL currently requires boost_1_59_0


CMake Error at cmake/boost.cmake:81 (MESSAGE):

  You can download it with -DDOWNLOAD_BOOST=1 -DWITH_BOOST=<directory>


  This CMake script will look for boost in <directory>.  If it is not there,

  it will download and unpack it (in that directory) for you.


  If you are inside a firewall, you may need to use an http proxy:


  export http_proxy=http://example.com:80


Call Stack (most recent call first):

  cmake/boost.cmake:238 (COULD_NOT_FIND_BOOST)

  CMakeLists.txt:455 (INCLUDE)



-- Configuring incomplete, errors occurred!



編譯報錯!!!!!


從標出的紅色部分可以看出是缺少依賴google一番後 找到解決方案

mysql5.7.5以後都需要 boost

:https://sourceforge.net/projects/boost/files/boost/1.59.0/


安裝boost:

[[email protected]_1 mysql-5.7.17]# tar -xf boost_1_59_0.tar.gz

[[email protected]_1 mysql-5.7.17]# cd boost_1_59_0/

[[email protected]_1 mysql-5.7.17]# mkdir /usr/local/boost

[[email protected]_1 mysql-5.7.17]# cp -a ./* /usr/local/boost/



再次編譯(指定boost路徑):

#增加了boost路徑 -DWITH_BOOST

[[email protected]_1 mysql-5.7.17]# cmake \

-DCMAKE_INSTALL_PREFIX=/usr/local/mysql  \

-DMYSQL_DATADIR=/data/3307/data  \    #自訂目錄

-DSYSCONFDIR=/data/3307 \           #自訂目錄

-DMYSQL_USER=mysql \

-DWITH_MYISAM_STORAGE_ENGINE=1 \

-DWITH_INNOBASE_STORAGE_ENGINE=1 \

-DWITH_ARCHIVE_STORAGE_ENGINE=1 \

-DWITH_MEMORY_STORAGE_ENGINE=1 \

-DWITH_READLINE=1 \

-DMYSQL_UNIX_ADDR=/data/3307/mysql.sock \   #自訂目錄

-DMYSQL_TCP_PORT=3307 \         #自訂連接埠

-DENABLED_LOCAL_INFILE=1 \

-DENABLE_DOWNLOADS=1 \

-DWITH_PARTITION_STORAGE_ENGINE=1  \

-DEXTRA_CHARSETS=all \

-DDEFAULT_CHARSET=utf8 \

-DDEFAULT_COLLATION=utf8_general_ci \

-DWITH_DEBUG=0 \

-DMYSQL_MAINTAINER_MODE=0 \

-DWITH_SSL:STRING=bundled \

-DWITH_ZLIB:STRING=bundled \

-DWITH_BOOST=/usr/local/boost


[[email protected]_1 mysql-5.7.17]# make && make install


make過程中報以下錯誤!!!



[ 75%] Built target sqlgunitlib

[ 75%] Building CXX object unittest/gunit/CMakeFiles/merge_small_tests-t.dir/merge_small_tests.cc.o

c++: internal compiler error: Killed (program cc1plus)

Please submit a full bug report,

with preprocessed source if appropriate.

See <http://bugzilla.redhat.com/bugzilla> for instructions.

make[2]: *** [unittest/gunit/CMakeFiles/merge_small_tests-t.dir/merge_small_tests.cc.o] Error 4

make[1]: *** [unittest/gunit/CMakeFiles/merge_small_tests-t.dir/all] Error 2

make: *** [all] Error 2


google一番後發現是 記憶體不夠 swap分區也不夠 

解決方案:


[[email protected]_1 ~]# dd if=/dev/zero of=/swapfile bs=1k count=2048000 

[[email protected]_1 ~]# mkswap /swapfile 

[[email protected]_1 ~]# swapon /swapfile

初始化:
[[email protected]_1 3307]# mysqld --defaults-file=/data/3307/my.cnf --initialize-insecure --user=mysql

啟動服務:

[[email protected]_1 3307]# mysqld_safe --user=mysql &

[[email protected]_1 data]# mysql -uroot

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 3

Server version: 5.7.17-log Source distribution


Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.


Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.


Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.


mysql> show databases;

+--------------------+

| Database           |

+--------------------+

| information_schema |

| mysql              |

| performance_schema |

| sys                |

+--------------------+

4 rows in set (0.00 sec)


mysql> 


安裝完成!

本文出自 “夢1場ー〉╯” 部落格,請務必保留此出處http://cqwujiang.blog.51cto.com/10808946/1900875

Mysql 5.7.17 編譯安裝

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.