欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Linux环境下mysql5.7.13安装教程

程序员文章站 2024-02-15 09:20:52
本文实例为大家分享了linux mysql5.7.13安装教程,供大家参考,具体内容如下 1、准备 cmake-3.6.0.tar.gz  bison-3....

本文实例为大家分享了linux mysql5.7.13安装教程,供大家参考,具体内容如下

1、准备
cmake-3.6.0.tar.gz 
bison-3.0.4.tar.gz 
mysql-5.7.13.tar.gz (http://dev.mysql.com/get/downloads/mysql-5.7/mysql-5.7.13.tar.gz) 

2、安装cmake 和 bison
首先可以查看下是否安装了 cmake 

# rpm -qa |grep cmake 
# tar zxvf cmake-3.6.0.tar.gz
# cd cmake-3.6.0
# ./bootstrap
# make && make install 
# tar zxvf bison-3.0.4.tar.gz
# cd bison-3.0.4
# ./configure
# make && make install 

3、安装mysql 

[root@localhost src]# tar -zxvf mysql-5.7.13.tar.gz
[root@localhost src]# cd mysql-5.7.13
[root@localhost mysql-5.7.13]# cmake -dcmake_install_prefix=/usr/local/mysql -dmysql_unix_addr=/usr/local/mysql/mysql.sock -ddefault_charset=gbk -ddefault_collation=gbk_chinese_ci -dwith_innobase_storage_engine=1 -dwith_archive_storage_engine=1 -dwith_blackhole_storage_engine=1 -dmysql_datadir=/data/mysqldb -dmysql_tcp_port=3306 -denable_downloads=1 


...
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:451 (include)

-- configuring incomplete, errors occurred!

Linux环境下mysql5.7.13安装教程

注:重新运行配置,需要删除cmakecache.txt文件 
解决: 
(1)在预编译时添加相应的选项:cmake -ddownload_boost=1 -dwith_boost=/usr/local/boost 
(2)或者下载一个boost包,放到/usr/local/boost目录下,然后在cmake后面加选项-dwith_boost=/usr/local/boost

[root@localhost mysql-5.7.13]# cmake -dcmake_install_prefix=/usr/local/mysql -dmysql_unix_addr=/usr/local/mysql/mysql.sock -ddefault_charset=gbk -ddefault_collation=gbk_chinese_ci -dwith_innobase_storage_engine=1 -dwith_archive_storage_engine=1 -dwith_blackhole_storage_engine=1 -dmysql_datadir=/data/mysqldb -dmysql_tcp_port=3306 -denable_downloads=1 -ddownload_boost=1 -dwith_boost=/usr/local/boost

 .... 
 cmake error at cmake/readline.cmake:64 (message):
 curses library not found. please install appropriate package,

 remove cmakecache.txt and rerun cmake.on debian/ubuntu, package name is libncurses5-dev, on redhat and derivates it is ncurses-devel.
 call stack (most recent call first):
 cmake/readline.cmake:107 (find_curses)
 cmake/readline.cmake:181 (mysql_use_bundled_editline)
 cmakelists.txt:479 (mysql_check_editline)


 -- configuring incomplete, errors occurred!
 see also "/usr/local/src/mysql-5.7.13/cmakefiles/cmakeoutput.log".
 see also "/usr/local/src/mysql-5.7.13/cmakefiles/cmakeerror.log".

  解决: 
(1)安装ncurses-devel 
yum -y install ncurses-devel
(2)删除cmakecache.txt 
rm cmakecache.txt
(3)重新cmake 

复制代码 代码如下:
[root@localhost mysql-5.7.13]# cmake -dcmake_install_prefix=/usr/local/mysql -dmysql_unix_addr=mysql.mysql -ddefault_charset=gbk -ddefault_collation=gbk_chinese_ci -dwith_innobase_storage_engine=1 -dwith_archive_storage_engine=1 -dwith_blackhole_storage_engine=1 -dmysql_datadir=/data/mysqldb -dmysql_tcp_port=3306 -denable_downloads=1 -ddownload_boost=1 -dwith_boost=/usr/local/boost
  

复制代码 代码如下:
[root@localhost mysql-5.7.13]# make[root@localhost mysql-5.7.13]# make install

精彩专题分享:mysql不同版本安装教程 mysql5.7各版本安装教程

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。