初始化mysql數(shù)據(jù)庫(kù)提示缺少Data:dumper模塊解決方法

初始化MySQL數(shù)據(jù)庫(kù)時(shí)出現(xiàn)下面錯(cuò)誤,原因是缺少Data:dumper模塊

創(chuàng)新新互聯(lián),憑借10多年的成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)經(jīng)驗(yàn),本著真心·誠(chéng)心服務(wù)的企業(yè)理念服務(wù)于成都中小企業(yè)設(shè)計(jì)網(wǎng)站有數(shù)千家案例。做網(wǎng)站建設(shè),選創(chuàng)新互聯(lián)建站

[root@bogon mysql]# ./scripts/mysql_install_db --user=mysql
FATAL ERROR: please install the following Perl modules before executing ./scripts/mysql_install_db:
Data::Dumper

解決方法 :安裝autoconf庫(kù)

命令:yum -y install autoconf   //此包安裝時(shí)會(huì)安裝Data:Dumper模塊

[root@bogon mysql]# yum -y install autoconf
已加載插件:fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.bit.edu.cn
 * extras: mirror.bit.edu.cn
 * updates: mirror.bit.edu.cn
正在解決依賴(lài)關(guān)系
--> 正在檢查事務(wù)
---> 軟件包 autoconf.noarch.0.2.69-11.el7 將被 安裝
--> 正在處理依賴(lài)關(guān)系 m4 >= 1.4.14,它被軟件包 autoconf-2.69-11.el7.noarch 需要
--> 正在處理依賴(lài)關(guān)系 perl(Data::Dumper),它被軟件包 autoconf-2.69-11.el7.noarch 需要
--> 正在檢查事務(wù)
---> 軟件包 m4.x86_64.0.1.4.16-10.el7 將被 安裝
---> 軟件包 perl-Data-Dumper.x86_64.0.2.145-3.el7 將被 安裝
--> 解決依賴(lài)關(guān)系完成

依賴(lài)關(guān)系解決

================================================================================================================================
 Package                             架構(gòu)                      版本                               源                       大小
================================================================================================================================
正在安裝:
 autoconf                            noarch                    2.69-11.el7                        base                    701 k
為依賴(lài)而安裝:
 m4                                  x86_64                    1.4.16-10.el7                      base                    256 k
 perl-Data-Dumper                    x86_64                    2.145-3.el7                        base                     47 k

事務(wù)概要
================================================================================================================================
安裝  1 軟件包 (+2 依賴(lài)軟件包)

總下載量:1.0 M
安裝大?。?.8 M
Downloading packages:
(1/3): perl-Data-Dumper-2.145-3.el7.x86_64.rpm                                                           |  47 kB  00:00:00     
(2/3): autoconf-2.69-11.el7.noarch.rpm                                                                   | 701 kB  00:00:00     
(3/3): m4-1.4.16-10.el7.x86_64.rpm                                                                       | 256 kB  00:00:02     
--------------------------------------------------------------------------------------------------------------------------------
總計(jì)                                                                                            455 kB/s | 1.0 MB  00:00:02     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  正在安裝    : m4-1.4.16-10.el7.x86_64                                                                                     1/3 
  正在安裝    : perl-Data-Dumper-2.145-3.el7.x86_64                                                                         2/3 
  正在安裝    : autoconf-2.69-11.el7.noarch                                                                                 3/3 
  驗(yàn)證中      : perl-Data-Dumper-2.145-3.el7.x86_64                                                                         1/3 
  驗(yàn)證中      : m4-1.4.16-10.el7.x86_64                                                                                     2/3 
  驗(yàn)證中      : autoconf-2.69-11.el7.noarch                                                                                 3/3 

已安裝:
  autoconf.noarch 0:2.69-11.el7                                                                                                 

作為依賴(lài)被安裝:
  m4.x86_64 0:1.4.16-10.el7                                perl-Data-Dumper.x86_64 0:2.145-3.el7                               

完畢!

安裝完autoconf庫(kù),再運(yùn)行./scripts/mysql_install_db --user=mysql,問(wèn)題消失?。?!

------------------------------------------------------------

下面再備上源碼安裝autoconf

下載地址:http://ftp.gnu.org/gnu/autoconf/

我這里選擇的是2.69版本下載http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz

[root@bogon liuzhen]# tar -zxvf autoconf-2.69.tar.gz
[root@bogon liuzhen]# cd autoconf-2.69
[root@bogon autoconf-2.69]# ./configure 
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
configure: autobuild project... GNU Autoconf
configure: autobuild revision... 2.69
configure: autobuild hostname... bogon
configure: autobuild timestamp... 20170115T063135Z
checking whether /bin/sh -n is known to work... yes
checking for characters that cannot appear in file names... none
checking whether directories can have trailing spaces... yes
checking for expr... /usr/bin/expr
checking for GNU M4 that supports accurate traces... configure: error: no acceptable m4 could be found in $PATH.
GNU M4 1.4.6 or later is required; 1.4.16 or newer is recommended.
GNU M4 1.4.15 uses a buggy replacement strstr on some systems.
Glibc 2.9 - 2.12 and GNU M4 1.4.11 - 1.4.15 have another strstr bug.

執(zhí)行./configure時(shí)出現(xiàn)下面錯(cuò)誤: 

checking for GNU M4 that supports accurate traces... configure: error: no acceptable m4 could be found in $PATH.

GNU M4 1.4.6 or later is required; 1.4.16 or newer is recommended.

原因是需要安裝M4

打開(kāi)m4下載地址:

http://ftp.gnu.org/gnu/m4/

我這里下載的是最新版本http://ftp.gnu.org/gnu/m4/m4-1.4.18.tar.gz

[root@bogon liuzhen]# tar -zxvf m4-1.4.18.tar.gz
[root@bogon liuzhen]# cd m4-1.4.18
[root@bogon m4-1.4.18]# ./configure
[root@bogon m4-1.4.18]# make
[root@bogon m4-1.4.18]# make install

m4安裝完成之后再次執(zhí)行再次切換到autoconf目錄繼續(xù)安裝

[root@bogon liuzhen]# cd autoconf-2.69
[root@bogon autoconf-2.69]# ./configure 
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
configure: autobuild project... GNU Autoconf
configure: autobuild revision... 2.69
configure: autobuild hostname... bogon
configure: autobuild timestamp... 20170115T064711Z
checking whether /bin/sh -n is known to work... yes
checking for characters that cannot appear in file names... none
checking whether directories can have trailing spaces... yes
checking for expr... /usr/bin/expr
checking for GNU M4 that supports accurate traces... /usr/local/bin/m4
checking whether /usr/local/bin/m4 accepts --gnu... yes
checking how m4 supports trace files... --debugfile
checking for perl... no
configure: error: perl is not found

發(fā)現(xiàn)了新的錯(cuò)誤:

checking for perl... no

configure: error: perl is not found

是因?yàn)闆](méi)有安裝perl

可以快速yum安裝,也可以向下看源碼安裝

[root@bogon liuzhen]# yum -y install perl perl-devel

下載地址:https://www.perl.org/get.html

源碼包地址:http://www.cpan.org/src/5.0/perl-5.24.0.tar.gz

[root@bogon liuzhen]# tar -zxvf perl-5.24.0.tar.gz
[root@bogon liuzhen]# cd perl-5.24.0
[root@bogon perl-5.24.0]# ./Configure
[root@bogon perl-5.24.0]# make
[root@bogon perl-5.24.0]# make install

perl安裝完成之后再次執(zhí)行再次切換到autoconf目錄繼續(xù)安裝

[root@bogon liuzhen]# cd autoconf-2.69
[root@bogon autoconf-2.69]# ./configure 
[root@bogon autoconf-2.69]# make
[root@bogon autoconf-2.69]# make install

至此autoconf通過(guò)源碼方式安裝完成

本文標(biāo)題:初始化mysql數(shù)據(jù)庫(kù)提示缺少Data:dumper模塊解決方法
當(dāng)前路徑:http://bm7419.com/article4/gosoie.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制網(wǎng)站、建站公司、網(wǎng)站內(nèi)鏈營(yíng)銷(xiāo)型網(wǎng)站建設(shè)、面包屑導(dǎo)航、網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

網(wǎng)站優(yōu)化排名